Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1161883
    TopTierLearning
    Participant

    Currently I have many blog posts so I see that there is more than one page “1, 2, 3, etc..” How can I make it so all blog posts fit on one page?

    https://www.toptierlearning.com/blog/

    #1161904
    Thai
    Moderator

    Hi There,

    Please add the following code under functions.php file locates in your child theme:

    function x_custom_blog($query) {
    	if( !is_admin() && $query->is_main_query() ) {
    		if( $query->is_home() ) {
    			$query->set('posts_per_page', -1 );
    		}
    	}
    }
    add_action('pre_get_posts','x_custom_blog');

    Hope it helps 🙂

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