WordPress文章编辑页将作者模块移到发布模块内

lusongsong 2019-2-15 2930

WordPress文章编辑页将作者模块移到发布模块内

修改前

修改后

在主题目录的 function.php 中添加以下代码即可。

add_action( 'admin_menu', 'remove_author_metabox' );add_action( 'post_submitbox_misc_actions', 'move_author_to_publish_metabox' );function remove_author_metabox() {
    remove_meta_box( 'authordiv', 'post', 'normal' );}function move_author_to_publish_metabox() {
    global $post_ID;
    $post = get_post( $post_ID );
    echo '<div id="author" class="misc-pub-section" style="border-top-style:solid; border-top-width:1px; border-top-color:#EEEEEE; border-bottom-width:0px;">作者: ';
    post_author_meta_box( $post );
    echo '</div>';}


最新回复 (0)
全部楼主
返回