arie_cristianD

override JNews Primary Cat with Yoast Primary Cat

Jul 20th, 2025
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_filter( 'jnews_primary_category', 'override_jnews_primary_cat_with_yoast', 99, 2 );
  2.  
  3. function override_jnews_primary_cat_with_yoast( $cat_id, $post_id ) {
  4.     $yoast_primary_cat = yoast_get_primary_term_id( 'category', $post_id );
  5.     return $yoast_primary_cat ? $yoast_primary_cat : $cat_id;
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment