Continue reading Restricting Did you mean suggestions to one post type

Restricting Did you mean suggestions to one post type

Sometimes it may be necessary to restrict the Did you mean suggestions Relevanssi serves to just one post type. There’s no option for that, as by default the Relevanssi database the Did you mean suggestions use as a source (this only applies to Premium, that is) doesn’t have any information……extra MySQL code to restrict the words fetched to a particular post type. Add this code to your theme functions.php to restrict the Did you mean searches (in Premium only) to the current post type restriction: add_filter(‘relevanssi_get_words_query’, ‘rlv_dym_post_type’); function rlv_dym_post_type($q) { global $wpdb, $wp_query; if (isset($wp_query->query_vars[‘post_type’])) $post_type = $wp_query->query_vars[‘post_type’]; if…

Read more Restricting Did you mean suggestions to one post type 0 Comment on Restricting Did you mean suggestions to one post type