Tagged: x Author Posts June 29, 2016 at 7:48 am #1064751 nedatbigideasParticipant Can I limit the number of items that appear on a tag archive search results page. Ideally I only want to show 6 maximum. If there is a piece of cunning CSS code I would love to know. Thanks as ever June 29, 2016 at 8:41 am #1064863 ThaiModerator Hi There, Please add the following code under functions.php file locates in your child theme: function x_search_filter($query) { if ( !is_admin() && $query->is_main_query() ) { if ($query->is_search) { $query->set( 'posts_per_page', 6 ); } } } add_action('pre_get_posts','x_search_filter'); Hope it helps 🙂 Author Posts <script> jQuery(function($){ $("#no-reply-1064751 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script> Log In Username: Password: Keep me signed in Log In