Add_Custom_Fields_To_Search::hooks()
hooks
Contents
Description Description
Adds hooks
Return Return
(void)
Source Source
File: includes/class-add-custom-fields-to-search.php
function hooks() { add_filter( 'posts_distinct', array( $this, 'cf_search_distinct' ) ); add_filter( 'posts_join', array( $this, 'cf_search_join' ) ); add_filter( 'posts_where', array( $this, 'cf_search_where' ) ); }
Expand full source code Collapse full source code View on Github