customizing a wp category
customizing a wp category
Out of context: Reply #3
- Started
- Last post
- 4 Responses
- 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
}
?>