Allow plugins to add more options to the comment status meta box easily. Fixes #14544 props ryan.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15490 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2010-08-07 21:06:06 +00:00
parent 10deff9e1d
commit 113a5038ce
1 changed files with 1 additions and 0 deletions

View File

@ -423,6 +423,7 @@ function post_comment_status_meta_box($post) {
<p class="meta-options">
<label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br />
<label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label>
<?php do_action('post_comment_status_meta_box-options', $post); ?>
</p>
<?php
}