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

Reply To: Search Results Not displaying for specific keywords

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Search Results Not displaying for specific keywords Reply To: Search Results Not displaying for specific keywords

#3864
Ernest MarcinkoErnest Marcinko
Keymaster

Thanks!

It was a backup code in cases if the user selects custom field content, but the custom field is not accessible or doesn’t exist. I must have made forgot to re-factor the function. It should have look something like this:

[code]if (!function_exists("get_content_w")) {
function get_content_w($content)
{
$content = apply_filters(‘the_content’, $content);
$content = str_replace(‘]]>’, ‘]]>’, $content);
return $content;
}
}[/code]

Thanks for going through it 😉