Home Forums WoodMart support forum Load More Posts button malfunctioning Reply To: Load More Posts button malfunctioning

#571765

Hung Pham
Keymaster

Hi josh-6874,

Please try to add the code below in the functions.php file in your child theme, let me know if it works correctly.

add_filter('pre_get_posts', function ( $wp_query ) {
	if ( is_admin() || $wp_query->is_main_query() || 'post' !== $wp_query->get('post_type') ) {
		return $wp_query;
	}

	$wp_query->set( 'ignore_sticky_posts', true );

	return $wp_query;
});

Regards,