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
January 23, 2023 at 9:52 am
#41033
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;
}