Advertisement
jaideep06

Exclude post types

Jun 19th, 2022
966
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_filter( 'rank_math/excluded_post_types',function( $post_types) {
  2.     unset($post_types['layouts']); //replace with the name of your post type
  3.     unset($post_types['layouts-parts']); //replace with the name of your post type
  4. }, 11 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement