customizing a wp category
customizing a wp category
- Started
- Last post
- 4 Responses
- ********
hi there,
What should i look into if i want to customize a wp category?, i want to customize its excerpt, its css etc..
thank you.
- bulletfactory0
go to wordpress.org look up 'the loop'.
- ********0
thank you
- neverblink0
of the top of my head:
<?php
$alt_cat = 'x';
$categories = get_categories( $args );
if( in_array( $alt_cat, $categories )){
// do something custom here
}
?>
- neverblink0
if on a single page:
<?php
if (in_category('x')){
// do something custom here
}
?>