This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: search results don't fit well

#49101
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

When I check the original (non Elementor) post content stored in the database, then this includes all of those keywords: https://i.imgur.com/aKFQkru.png
I have added the following custom code snippet to prevent that from indexing:

add_filter('asp_post_content_before_tokenize_clear', function($content, $the_post) {
	return apply_filters('the_content', $content);
}, 10, 2);

Now it should be all right.