PenciDesign Supporter replied
Hi,
Do you mean you want to remove all the pagination page numbers on the homepage?
You should insert this code either into the functions.php file of the child theme or by using the CodeSnippet plugin available here: https://wordpress.org/plugins/code-snippets/
add_action( 'pre_get_posts', function( $query ) {
if ( is_front_page() && is_home() ) {
$query->set( 'nopaging', true );
}
} );Regards,
PenciDesign.
