Advanced custom fields searching not working
-
I want to show searching on the base of my advanced custom fields.
In settings there is no options, I have checked the link:
https://www.secretsofgeeks.com/2014/09/wordpress-search-tags-and-categories.htmland implemented hook in function.php i.e.
wpes_meta_keys_query
Filter SQL query for listing meta keys in plugin settings./**
* Select all meta keys including those start with _(underscore)
*/
function wpes_meta_keys_query($query) {
global $wpdb;
$query = “select DISTINCT meta_key from $wpdb->postmeta ORDER BY meta_key ASC”;
return $query;
}
add_filter(‘wpes_meta_keys_query’, ‘wpes_meta_keys_query’);but didnot get any option to select in the settings
Please guide how to search on the base of ACF.
- The topic ‘Advanced custom fields searching not working’ is closed to new replies.