编辑发布微件选项

时间:2012-03-31 作者:AshesToAshes

另一个noob问题-在WordPress 3.3.1的默认香草安装中的“发布”小部件下,我们想“简化”发布小部件/

具体而言,我们希望没有“草稿”或“待审查”功能。当用户单击“发布”时,文章立即发布。

这是否可能,如果可能,如何实现?

帮助

1 个回复
SO网友:Nicola Peluchetti

我想你应该用post_submitbox_misc_actions

add_action( \'post_submitbox_misc_actions\', \'publish_in_frontpage\' );
function publish_in_frontpage($post)
{
    $value = get_post_meta($post->ID, \'_publish_in_frontpage\', true);
    echo \'<div class="misc-pub-section misc-pub-section-last">
         <span id="timestamp">\'
         . \'<label><input type="checkbox"\' . (!empty($value) ? \' checked="checked" \' : null) . \'value="1" name="publish_in_frontpage" /> Publish to frontpage</label>\'
    .\'</span></div>\';
}

结束