Ticket #32453: jonradio-test.php
File jonradio-test.php, 445 bytes (added by , 10 years ago) |
---|
Line | |
---|---|
1 | <?php |
2 | /* |
3 | Plugin Name: jonradio Test |
4 | Plugin URI: http://jonradio.com |
5 | Description: Test potential WordPress Bugs. |
6 | Version: 1.0 |
7 | Author: jonradio |
8 | Author URI: http://jonradio.com |
9 | License: GPLv2 |
10 | */ |
11 | |
12 | add_action( 'add_meta_boxes_page', 'wbr_add_meta_boxes' ); |
13 | |
14 | function wbr_add_meta_boxes( $page ) { |
15 | add_meta_box( 'wbr-meta', 'Letter Page Entry', 'wbr_meta_box', 'page', 'normal', 'high' ); |
16 | } |
17 | |
18 | function wbr_meta_box( $post ) { |
19 | var_dump( $post ); |
20 | } |
21 | |
22 | ?> |