The multipage global variable represents whether the current WordPress post or page to be displayed is multi-paged or not. It is set in the function setup_postdata($post) defined in [wordpress root folder]/wp-includes/functions.php. A post is broken in multiple pages wherever <!--nextpage--> is inserted inside the post. pages global variable is used to hold the content of multiple pages of the post.
Theme developers can use the function wp_link_pages($args=”), in [wordpress root folder]/wp-includes/template-functions/post.php, in the WordPress loop to display links to the next and previous pages of the post.
Back to full list of global variables.
Technorati tags: multipage, wp_link_pages, multipage post



















April 25, 2006 at 10:54 pm
[...] $multipage [...]
April 27, 2006 at 3:27 pm
[...] multipage [...]
May 24, 2006 at 2:32 pm
[...] WordPress uses numpages global variable to store the number of pages in a multipage post. It is set in the function setup_postdata($post) defined in [wordpress root folder]/wp-includes/functions.php. The split pages are stored in the global variable pages. [...]