Advertisement
GochiSiyan

change image category

Apr 17th, 2022
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_filter( 'theme_mod_jnews_mobile_logo', function ( $logo ) {
  2. if ( is_category() ) {
  3. $data = [];
  4. $cats = [0,0,0,0];//list of category id to change
  5. jnews_recursive_category(get_categories([
  6. 'include' => $cats,
  7. ]), $data);
  8.  
  9. if ( in_array( get_queried_object(), $data ) ) {
  10. return '';//your alternative logo (use URL instead of image ID)
  11. }
  12. }
  13. return $logo;
  14. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement