Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1064751
    nedatbigideas
    Participant

    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

    #1064863
    Thai
    Moderator

    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 🙂

  • <script> jQuery(function($){ $("#no-reply-1064751 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>