Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'theme_mod_jnews_mobile_logo', function ( $logo ) {
- if ( is_category() ) {
- $data = [];
- $cats = [0,0,0,0];//list of category id to change
- jnews_recursive_category(get_categories([
- 'include' => $cats,
- ]), $data);
- if ( in_array( get_queried_object(), $data ) ) {
- return '';//your alternative logo (use URL instead of image ID)
- }
- }
- return $logo;
- } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement