Title: Page Shortcode
Last modified: August 19, 2016

---

# Page Shortcode

 *  [mythusmage](https://wordpress.org/support/users/mythusmage/)
 * (@mythusmage)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/page-shortcode/)
 * I would like to produce a ToC for my blog, where are the guidelines hiding? I
   can find general guidelines, and the article an the shortcode API, but nothing
   on the page shortcode. Or has that particular short code been depracated?

Viewing 1 replies (of 1 total)

 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/page-shortcode/#post-1423279)
 * Not sure what you are asking so this will list all pages and then all posts
 *     ```
       <?php
       $types[0] = 'page';
       $types[1] = 'post';
   
       foreach ($types as $type) {
         $args=array(
           'post_type' => $type,
           'post_status' => 'publish',
           'showposts' => -1,
           'caller_get_posts'=> 1
           );
         $my_query = null;
         $my_query = new WP_Query($args);
         if( $my_query->have_posts() ) {
           echo 'List of: ' . $type .'(s)';
           while ($my_query->have_posts()) : $my_query->the_post(); ?>
             <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
            <?php
           endwhile;
         } //if ($my_query)
       } // foreach
       wp_reset_query();  // Restore global post data stomped by the_post().
       ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Page Shortcode’ is closed to new replies.

## Tags

 * [pages](https://wordpress.org/support/topic-tag/pages/)
 * [Short Code](https://wordpress.org/support/topic-tag/short-code/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [MichaelH](https://wordpress.org/support/users/michaelh/)
 * Last activity: [16 years, 3 months ago](https://wordpress.org/support/topic/page-shortcode/#post-1423279)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
