Exclude post_content from search
-
Hi,
I’m using ACF Better Search and it worcs great.
My client has asqued me not factor in ‘post_content’ when searching for resuls.
This is pretty easily accomplished in wordpress with:add_filter('post_search_columns', function($search_columns) {
// default ['post_title', 'post_content', 'post_excerpt']
return ['post_title'];
});However this seems to be overwritten by Better Search and post_content guet searched.
Is there any solution to this other than disabling the pluguin?
The topic ‘Exclude post_content from search’ is closed to new replies.