michaellevelup

Related posts only by tags

Apr 21st, 2022 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. function king_tags_only_related_posts( $related_args ) {
  2.  
  3.     $post_tags = get_the_terms( $post->ID, 'post_tag' );
  4.     $tags = wp_list_pluck( $post_tags, 'slug' );  
  5.  
  6.     $related_args['tax_query'][] = array(
  7.         'taxonomy' => 'post_tag',
  8.         'field'    => 'slug',
  9.         'terms'    => $tags,
  10.     );
  11.  
  12.     return $related_args;
  13. }
  14.  
  15. add_filter('kadence_related_posts_args', 'king_tags_only_related_posts');
Add Comment
Please, Sign In to add comment