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

Reply To: Filter post titles in live search results

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Filter post titles in live search results Reply To: Filter post titles in live search results

#41033
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

The plugin uses the get_the_title() function to request the title, regarless of the engine used (both index and regular). That function automatically applies the the_title hook.

Make sure you are using the the_title hook for modifying the title, it should apply for the live search results as well. Example:

add_filter( 'the_title', 'my_the_title', 10, 2 );
function my_the_title($title, $id) {
	return 'Custom Text: ' . $title;
}