Answer the question
In order to leave comments, you need to log in
How to hook CSS in Wordpress using in_category() and is_page() functions?
How to hook css with these functions?
The essence is something like this:
if category/page 1,2,3
use css file A
if category/page 4,5,6
use css file B
otherwise use css file C
Answer the question
In order to leave comments, you need to log in
// Если в категории xxx и на странице yyy, Подгрузить xy.css
<?php if ( in_category('xxx') || is_page('yyy') ) { ?>
<link href='xy.css' rel='stylesheet' type='text/css'>
<?php } ?>
// Если ничего из вышеперечисленного, то подгрузить обычный css
<?php else { ?>
<link href='style.css' rel='stylesheet' type='text/css'>
<?php } ?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question