Advertisement
arie_cristianD

disable auto load post on spesific category

Jan 9th, 2025
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter( 'jnews_post_wrap_class', 'disable_auto_load_post', 99, 2 );
  2.  
  3.  
  4. function disable_auto_load_post( $class, $post_id ) {
  5.     $post_categories = get_the_category( $post_id );
  6.     foreach ( $post_categories as $category ) {
  7.         if ( 'global' === $category->slug ) {
  8.             return 'post-wrap';
  9.         }
  10.     }
  11.     return $class;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement