黑客入侵之后,我想到了以下解决方案:
在顶部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;
}