Ticket #18408: 18408.php
File 18408.php, 440 bytes (added by , 10 years ago) |
---|
Line | |
---|---|
1 | <?php |
2 | |
3 | add_action( 'add_meta_boxes', 'myplugin_add_custom_box' ); |
4 | |
5 | function 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 | |
15 | function 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 | } |