Deseja mover sua metabox de autor da parte inferior da página para a metabox de publicação de post? Isso é útil se você estiver administrando um blog com vários autores e estiver publicando a maioria dos artigos como Equipe editorial. Dessa forma, você pode alterar facilmente o autor sem precisar rolar para baixo até a metabox de autor. Esse snippet também lembra você de alterar o autor antes de publicar o artigo.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
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;">Author: '; post_author_meta_box( $post ); echo '</div>'; }
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: Melhores construtores de páginas do WordPress (comparados).
Got a way to open all publish metabos options by default so status, visibility and publish date are completely viewable by default?
Got a way to open all publish metabos options by default so status, visibility and publish date are completely viewable by default?
Got a way to open all publish metabos options by default so status, visibility and publish date are completely viewable by default?
Got a way to open all publish metabos options by default so status, visibility and publish date are completely viewable by default?
Got a way to open all publish metabos options by default so status, visibility and publish date are completely viewable by default?
Got a way to open all publish metabos options by default so status, visibility and publish date are completely viewable by default?
Hi Kevin. I tried this snippet and the author box displays in the metabox as intended, but when I save, it doesn’t ‘stick’. Maybe it’s conflicting with another plugin or function, maybe not. Just wanted to report that.
thanks for the snippet. However, I tried this snippet on a multisite test site and discovered that all authors in the WP site are also included in the drop downmenu, when moved to the publish post metabox. However, I may select any author name I like but do not have permission to publish anything. Just can save a post.
Hi Zeb,
I never tested this out on wpmu but it works great within single user wordpress version. Saves time rather then scrolling to the bottom of the page. However that it good to know that it will not work properly on MU.
Yes, Kevin thats why I liked it and tried to implement it to save time. It’s great and I’ll definitly use it in my single installation (thanks to you) 🙂 , but in MU, I have to wait for an improved version.
Hi Zeb agreed, I’m sure ill post an update in the near future.