Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_post_wrap_class', 'disable_auto_load_post', 99, 2 );
- function disable_auto_load_post( $class, $post_id ) {
- $post_categories = get_the_category( $post_id );
- foreach ( $post_categories as $category ) {
- if ( 'global' === $category->slug ) {
- return 'post-wrap';
- }
- }
- return $class;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement