pop_posts_feed_callback( false ); } /** * Callback for daily popular posts. * * @since 2.8.0 * * @return void */ public function pop_posts_feed_daily() { $this->pop_posts_feed_callback( true ); } /** * Callback function for add_feed to locate the correct template. * * @since 2.8.0 * * @param bool $daily Daily posts flag. * * @return void */ public function pop_posts_feed_callback( $daily = false ) { set_query_var( 'daily', $daily ); $template = locate_template( 'feed-rss2-popular-posts.php' ); if ( ! $template ) { $template = TOP_TEN_PLUGIN_DIR . 'includes/frontend/feed-rss2-popular-posts.php'; } load_template( $template ); } }