Advertisement
GochiSiyan

post category permalink override

Sep 29th, 2021
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. if ( ! function_exists( 'jnews_post_category_permalink' ) ) {
  2. function jnews_post_category_permalink( $cat, $cats, $post ) {
  3. if ( $term = jnews_get_primary_category( $post->ID ) ) {
  4. $cat = get_term( $term );
  5. }
  6.  
  7. return $cat;
  8. }
  9.  
  10. add_filter( 'post_link_category', 'jnews_post_category_permalink', 10, 3 );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement