Wordpress Admin Tooltip hooks

时间:2012-03-19 作者:jepser

我想知道是否有一种方法可以使用Wordpress管理工具提示(灰色和蓝色),当你更新你的Wordpress(3.x)时会显示这些提示。显示新功能。

谢谢

2 个回复
最合适的回答,由SO网友:Bainternet 整理而成

以下是我所知的最简单的实现,因为没有真正的API:

//add the needed scripts and styles
add_action(\'admin_enqueue_scripts\', \'wpse_46028_enqueue_admin_scripts\');
function wpse_46028_enqueue_admin_scripts() {
    wp_enqueue_style(\'wp-pointer\');
    wp_enqueue_script(\'wp-pointer\');
    //hook the pointer 
    add_action(\'admin_print_footer_scripts\', \'wpse_46028_print_footer_scripts\' );
}
function wpse_46028_print_footer_scripts() {
    $pointer_content = \'<h3>WordPress Answers</h3>\';
    $pointer_content .= \'<p>This is your pointer content</p>\';
?>
   <script type="text/javascript">
   //<![CDATA[
   jQuery(document).ready( function($) {
    //jQuery selector to point to 
    $(\'#menu-dashboard\').pointer({
        content: \'<?php echo $pointer_content; ?>\',
        position: \'top\',
        close: function() {
            // This function is fired when you click the close button
        }
      }).pointer(\'open\');
   });
   //]]>
   </script>
<?php
}

SO网友:helenhousandi

总有一种方法,正如一些使用这些指针的插件所示,但它们目前是作为内部核心特性使用的,因此没有真正的API可供使用。

结束

相关推荐

hooks & filters and variables

我是updating the codex page example for action hooks, 在游戏中完成一些可重用的功能(最初是针对这里的一些Q@WA)。但后来我遇到了一个以前没有意识到的问题:在挂接到一个函数以修改变量的输出后,我再也无法决定是要回显输出还是只返回它。The Problem: 我可以修改传递给do_action 用回调函数钩住。使用变量修改/添加的所有内容仅在回调函数中可用,但在do_action 在原始函数内部调用。很高兴:我将其修改为一个工作示例,因此您可以将其复制/粘贴