How to exclude testimonials from search?
-
Hi!
I looking for a testimonials slider in my homepage and your plugin seems great! However, I do not want to have individual pages for each testimonial, which I believe can be accomplished by hiding this content post type from search results.
Something like this, added to my child theme functions.php:function modify_testimonials() { if ( post_type_exists( 'testimonial' ) ) { global $wp_post_types, $wp_rewrite; $wp_post_types['testimonial']->exclude_from_search = true; } } add_action( 'init', 'modify_testimonials', 1 );However, I do not know the name of this post_type (testimonial doesn’t work)… Could anyone help me?
Many thanks!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘How to exclude testimonials from search?’ is closed to new replies.