How to connect the css file to the end of the header on wordpress?

Multi tool use
up vote
0
down vote
favorite
I need to connect a css file so that all css files of the site could be edited from it
including files like botton.min.css
through the functions.php file it is not displayed further
static2.keep4u.ru/2018/11/10/nnnnnd8073f6a38d659d0.jpg
for output I used
function spon_style()
wp_enqueue_style( 'Me_css_code', get_template_directory_uri() . '/spon.css', array(), '1.0' );
add_action( 'wp_enqueue_scripts', 'spon_style' );
css wordpress
add a comment |
up vote
0
down vote
favorite
I need to connect a css file so that all css files of the site could be edited from it
including files like botton.min.css
through the functions.php file it is not displayed further
static2.keep4u.ru/2018/11/10/nnnnnd8073f6a38d659d0.jpg
for output I used
function spon_style()
wp_enqueue_style( 'Me_css_code', get_template_directory_uri() . '/spon.css', array(), '1.0' );
add_action( 'wp_enqueue_scripts', 'spon_style' );
css wordpress
Add priority as 3rd parameter to add_action()?Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. Default value: 10
– skobaljic
Nov 10 at 12:18
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to connect a css file so that all css files of the site could be edited from it
including files like botton.min.css
through the functions.php file it is not displayed further
static2.keep4u.ru/2018/11/10/nnnnnd8073f6a38d659d0.jpg
for output I used
function spon_style()
wp_enqueue_style( 'Me_css_code', get_template_directory_uri() . '/spon.css', array(), '1.0' );
add_action( 'wp_enqueue_scripts', 'spon_style' );
css wordpress
I need to connect a css file so that all css files of the site could be edited from it
including files like botton.min.css
through the functions.php file it is not displayed further
static2.keep4u.ru/2018/11/10/nnnnnd8073f6a38d659d0.jpg
for output I used
function spon_style()
wp_enqueue_style( 'Me_css_code', get_template_directory_uri() . '/spon.css', array(), '1.0' );
add_action( 'wp_enqueue_scripts', 'spon_style' );
css wordpress
css wordpress
asked Nov 10 at 11:53
zeni1agent
236
236
Add priority as 3rd parameter to add_action()?Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. Default value: 10
– skobaljic
Nov 10 at 12:18
add a comment |
Add priority as 3rd parameter to add_action()?Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. Default value: 10
– skobaljic
Nov 10 at 12:18
Add priority as 3rd parameter to add_action()?
Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. Default value: 10
– skobaljic
Nov 10 at 12:18
Add priority as 3rd parameter to add_action()?
Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. Default value: 10
– skobaljic
Nov 10 at 12:18
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Just access your header.php file and add style before tag:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri() ?>/spon.css" />
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Just access your header.php file and add style before tag:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri() ?>/spon.css" />
add a comment |
up vote
0
down vote
Just access your header.php file and add style before tag:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri() ?>/spon.css" />
add a comment |
up vote
0
down vote
up vote
0
down vote
Just access your header.php file and add style before tag:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri() ?>/spon.css" />
Just access your header.php file and add style before tag:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri() ?>/spon.css" />
answered Nov 10 at 12:44
Hai Tien
75341230
75341230
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238665%2fhow-to-connect-the-css-file-to-the-end-of-the-header-on-wordpress%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
9qtp,PuD4xdn5wCYMUu VUHLyPK3jbaC,u,Vx,7
Add priority as 3rd parameter to add_action()?
Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action. Default value: 10
– skobaljic
Nov 10 at 12:18