我想在编辑帖子文本时显示管理员通知(保存帖子之前)。我想admin\\u notice hook在这方面不起作用(对我来说不起作用)。你知道如何显示一些错误消息来提醒用户帖子内容不会被接受吗?
我更喜欢像管理员通知这样的内联显示,而不是可能被阻止的弹出窗口。
以下操作不起作用
function secure_oembed_filter($html, $url, $attr, $post_ID) {
if (strlen($html) > 0 && strpos($html, "http://")) {
//wp_die("Unsecure link in embeds", "Unsecured post");
} else {
add_action(\'admin_notices\', array($this, \'show_error\'));
}
return $html;
}
private function show_error () {
echo \'<div class="error"><p>This is an error</p></div>\';
}