WordPress管理画面の投稿やカスタム投稿の編集画面で、「抜粋」の入力フィールドをタイトルの下に移動する方法のご紹介です。
管理画面で「抜粋」の表示位置を変更
ご利用のテーマのfunctions.phpに以下のコードを追加します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
function custom_admin_script1(){ if( get_post_type() === '投稿タイプ名' ): ?> <style> #postexcerpt {display: block;} #postexcerpt p {display: none;} #titlediv {margin-bottom: 10px;} #postexcerpt {margin-bottom: 0;} </style> <script> (function ($) { $(function () { var $excerpt = $('#postexcerpt'); $('.hndle span', $excerpt).text('抜粋'); $('#titlediv').after($excerpt); }); })(jQuery); </script> <?php endif; } add_action("admin_head-post-new.php", "custom_admin_script1"); add_action("admin_head-post.php", "custom_admin_script1"); |
コメント