是否可以添加admin_notice 到立柱。php管理中的编辑屏幕–仅当帖子刚刚更新时。
function my_admin_notice(){
global $pagenow;
if ( $pagenow == \'post.php\' ) {
// Check if the post was just updated...
echo \'<div class="notice notice-warning is-dismissible">
<p>This is my custom post-was-just-updated admin notice.</p>
</div>\';
}
}
add_action(\'admin_notices\', \'my_admin_notice\');
最合适的回答,由SO网友:rob-gordon 整理而成
我通过查看WP Core找到了答案。更新帖子时,实际上会返回到编辑帖子屏幕(post.php),GET参数为message=1
. 然后用javascript快速从url中删除该参数。因此,您可以通过检查以下内容来确定帖子是否上传到插件中:
if ($_GET[\'message\'] == 1) {
// do something because the post was just updated
}