我正在尝试在激活测试插件时在管理面板中显示通知 我该如何显示?那是什么方法?
答案 0 :(得分:24)
对于插件激活,'admin_notices'挂钩不能直接使用,因为存在重定向。解决方法是将您的通知存储在选项表中,并在下次检查它。此外,如果您还想要涵盖插件升级和激活,则需要使用其他挂钩,例如'admin_init'(自WP 3.1起,请参阅http://make.wordpress.org/core/2010/10/27/plugin-activation-hooks/)。
这是一个处理激活和升级的完整示例插件。我将延期通知作为一个数组,以便你可以叠加它们。
<?php
/*
Plugin Name: My Plugin
*/
register_activation_hook(__FILE__, 'my_plugin_activation');
function my_plugin_activation() {
$notices= get_option('my_plugin_deferred_admin_notices', array());
$notices[]= "My Plugin: Custom Activation Message";
update_option('my_plugin_deferred_admin_notices', $notices);
}
add_action('admin_init', 'my_plugin_admin_init');
function my_plugin_admin_init() {
$current_version = 1;
$version= get_option('my_plugin_version');
if ($version != $current_version) {
// Do whatever upgrades needed here.
update_option('my_plugin_version', $current_version);
$notices= get_option('my_plugin_deferred_admin_notices', array());
$notices[]= "My Plugin: Upgraded version $version to $current_version.";
update_option('my_plugin_deferred_admin_notices', $notices);
}
}
add_action('admin_notices', 'my_plugin_admin_notices');
function my_plugin_admin_notices() {
if ($notices= get_option('my_plugin_deferred_admin_notices')) {
foreach ($notices as $notice) {
echo "<div class='updated'><p>$notice</p></div>";
}
delete_option('my_plugin_deferred_admin_notices');
}
}
register_deactivation_hook(__FILE__, 'my_plugin_deactivation');
function my_plugin_deactivation() {
delete_option('my_plugin_version');
delete_option('my_plugin_deferred_admin_notices');
}
更新:还有一种常用方法可以使用set_transient()
代替update_option()
,并将消息定向到正确的管理员用户。这篇文章涉及元变量,而不是插件激活,但据我所知,这些技术在仪表板的各处都是一样的:https://wordpress.stackexchange.com/questions/15354/passing-error-warning-messages-from-a-meta-box-to-admin-notices
答案 1 :(得分:6)
显示通知
非常简单function your_admin_notice(){
echo '<div class="updated">
<p>I am a little yellow notice.</p>
</div>';
}
add_action('admin_notices', 'your_admin_notice');
但是,如果您想要显示可接受的通知,请尝试以下
add_action('admin_notices', 'example_admin_notice');
function example_admin_notice() {
global $current_user ;
$user_id = $current_user->ID;
/* Check that the user hasn't already clicked to ignore the message */
if ( ! get_user_meta($user_id, 'example_ignore_notice') ) {
echo '<div class="updated"><p>';
printf(__('This is an annoying nag message. Why do people make these? | <a href="%1$s">Hide Notice</a>'), '?example_nag_ignore=0');
echo "</p></div>";
}
}
add_action('admin_init', 'example_nag_ignore');
function example_nag_ignore() {
global $current_user;
$user_id = $current_user->ID;
/* If user clicks to ignore the notice, add that to their user meta */
if ( isset($_GET['example_nag_ignore']) && '0' == $_GET['example_nag_ignore'] ) {
add_user_meta($user_id, 'example_ignore_notice', 'true', true);
}
}
如果您想在特定页面上显示该通知,请尝试以下条件。
function my_admin_notice(){
global $pagenow;
if ( $pagenow == 'plugins.php' ) {
echo '<div class="updated">
<p>This notice only appears on the plugins page.</p>
</div>';
}
}
add_action('admin_notices', 'my_admin_notice');
答案 2 :(得分:3)
只需使用<div class='updated'>
即可。例如 -
echo "<div class='updated'>Test Plugin Notice</div>";
答案 3 :(得分:3)
您可以使用新的管理员通知使用show_wp_pointer_admin_bar
创建所谓的管理指针。
Linky:http://wpengineer.com/2272/how-to-add-and-deactivate-the-new-feature-pointer-in-wordpress-3-3/
答案 4 :(得分:1)
添加通知的正确方法是在admin_notices
动作的钩子中回应它:
function wpse8170_admin_notice(){
echo '<div class="updated"><p>This is my notice.</p></div>';
}
add_action('admin_notices', 'wpse8170_admin_notice');
答案 5 :(得分:0)
我已经开发了amarkal-admin-notification - 一个脚本,可让您添加静态/可撤销的管理员通知并为您处理解雇。该脚本是Amarkal WordPress框架中的一个模块。
例如:
amarkal_admin_notification( 'my-error-notice', __('Oh snap! This is an <strong>error</strong> message.','slug'), 'error');