Advertisement
GochiSiyan

inline related category

Nov 22nd, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_filter('jnews_force_disable_inline_related_post', function ($bool) {
  2. global $post;
  3. $category = [1,2,3,4];
  4. return ! empty(array_intersect(wp_list_pluck( get_the_category($post->ID), 'term_id' ), $category));
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement