Add a label to the editor?

时间:2015-05-15 作者:Joe Hansen

我正在处理一个自定义的帖子类型。我启用了编辑器,但该框中的内容是次要的,不清楚应该在那里键入什么,因此我想为编辑器添加一个标签。我该怎么做?

2 个回复
最合适的回答,由SO网友:Joe Hansen 整理而成

黑客入侵之后,我想到了以下解决方案:

在顶部functions.php 我有以下几行:

add_action(\'admin_footer\', \'add_title_to_editor\');
刚刚被扔到中间functions.php 我有以下功能:

function add_title_to_editor() {
    global $post;
    if (get_post_type($post) == \'my_custom_post_type\') : ?>
        <script> jQuery(\'<h3>Optional Additional Information</h3>\').insertBefore(\'#postdivrich\'); </script>
    <? endif;
}

SO网友:Wali Hassan

我最近在其中一个项目中使用了这个,给你

add_action( \'edit_form_after_title\', \'wp692_edit_form_after_title\' );

function wp692_edit_form_after_title() {
echo \'<h2>This is My Label!</h2>\';
}

结束

相关推荐