__construct(); } /** * PHP5 constructor method. * * @since 0.1.0 */ function __construct() { add_filter( 'the_content', array( $this, 'filter_content' ) ); } function filter_content( $content ) { $options = get_option( 'all_site_search' ); $results_page = $options['results_page']; if ( is_page( $results_page ) ) { $results = '
 
'; $content = $content . $results; } return $content; } } $allsitesearch_filter = new AllSiteSearch_Filter();