…great solution if you have a fairly small and stable number of posts you want to include. add_filter( ‘relevanssi_indexing_restriction’, ‘rlv_index_only_some_posts’ ); function rlv_index_only_some_posts( $restriction ) { $posts_to_include = implode( ‘,’, array( 1, 2, 3 ) ); $restriction[‘mysql’] .= ” AND ( ( post.post_type = ‘post‘ AND post.ID IN ( $posts_to_include……) ) OR post.post_type != ‘post‘ ) “; $restriction[‘reason’] .= ‘ Unwanted post‘; return $restriction; } Add this to your site and list the posts you want to include in the $posts_to_include array (instead of 1, 2, 3). If you want this to target a post type other than post,……the best way depends on how many posts you want to include and how often you need to change the posts included. I’d do this by enabling posts in the site search, but then disabling indexing for all posts except those you want to include with relevanssi_indexing_restriction. This is a…