您可以通过连接到edit-post.php
页您可以使用多种挂钩,例如,如果您想在编辑标题字段下显示消息,可以挂钩到edit_form_after_title
.
请参见下面的示例代码和注释:
add_action(
\'edit_form_after_title\', // the hook
\'wpse_228208\' // the function
);
function wpse_228208() {
global $post;
// confirm if the post_type is \'post\'
if ($post->post_type!== \'post\')
return;
// you can also perform a condition for post_status, for example, if you don\'t want to display the message if post is already published:
if ($post->post_status!== \'publish\')
return;
// here goes your message
echo \'<div style="">Hello world!</div>\';
}