Disable pagination in posts and pages
I need to solve duplicating of posts and pages caused by unexpected paging. I am trying to disable the paging with this function, but it seems I miss something:
function wpse_disable_pagination( $query ) {
if( $query-is_single() $query-is_page() ) {
$query-set('nopaging', 1 );
}
}
add_action( 'pre_get_posts', 'wpse_disable_pagination' );