functions.phpに以下をコピペでいけるかと思います。
//ページ分割タグを取り除く
function no_pageing_hook( $post ) {
global $pages, $multipage, $numpages;
$multipage = 0;
$content = str_replace("\n<!--nextpage-->\n", '<!--nextpage-->', $post->post_content);
$content = str_replace("\n<!--nextpage-->", '<!--nextpage-->', $content);
$content = str_replace("<!--nextpage-->\n", '<!--nextpage-->', $content);
$pages = array( str_replace('<!--nextpage-->', '', $content) );
$numpages = 1;
}
if ( !is_mobile() ) {//パソコンページのみ
add_action( 'the_post', 'no_pageing_hook' );
}