Skip to content
Snippets Groups Projects
Commit 556e8d51 authored by Mohammad Jangda's avatar Mohammad Jangda
Browse files

Set $multipage to 0 when viewing all

This way, wp_list_pages will not output next/previous pages.
parent 5204f154
Branches
Tags
No related merge requests found
......@@ -179,7 +179,7 @@ class view_all_posts_pages {
*/
public function action_the_post( $post ) {
if ( $this->is_view_all() ) {
global $pages, $more;
global $pages, $more, $multipage;
$post->post_content = str_replace( "\n<!--nextpage-->\n", "\n\n", $post->post_content );
$post->post_content = str_replace( "\n<!--nextpage-->", "\n", $post->post_content );
......@@ -189,6 +189,7 @@ class view_all_posts_pages {
$pages = array( $post->post_content );
$more = 1;
$multipage = 0;
}
}
......@@ -669,4 +670,4 @@ if ( ! function_exists( 'is_view_all' ) ) {
return $vapp->is_view_all();
}
}
?>
\ No newline at end of file
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment