Make WordPress Core

Ticket #18408: 18408.php

File 18408.php, 440 bytes (added by ericlewis, 10 years ago)
Line 
1<?php
2
3add_action( 'add_meta_boxes', 'myplugin_add_custom_box' );
4
5function myplugin_add_custom_box() {
6        add_meta_box(
7                'myplugin_sectionid',
8                __( 'My Post Section Title', 'myplugin_textdomain' ),
9                'myplugin_inner_custom_box',
10                'post',
11                'side'
12        );
13}
14
15function myplugin_inner_custom_box() {
16        global $post;
17        $a = new WP_Query('post_type=page');
18        while($a->have_posts() ) : $a->the_post();
19        endwhile;
20        wp_reset_postdata();
21        the_title();
22}