Guest User

Untitled

a guest
Jan 17th, 2025
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. add_filter('nectar_activate_transparent_header','salient_child_modify_transparent_nav');
  2.  
  3. function salient_child_modify_transparent_nav($bool) {
  4.   if (is_singular('post')) {
  5.       return true;
  6.   }
  7.  
  8.   // Check if it's an archive for the specified post type
  9.   if (is_post_type_archive('post')) {
  10.       return true;
  11.   }
  12.     return $bool;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment