在管理区添加自定义指针
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在管理区添加自定义指针相关的知识,希望对你有一定的参考价值。
add_action( 'admin_enqueue_scripts', 'my_admin_enqueue_scripts' ); function my_admin_enqueue_scripts() { wp_enqueue_style( 'wp-pointer' ); wp_enqueue_script( 'wp-pointer' ); add_action( 'admin_print_footer_scripts', 'my_admin_print_footer_scripts' ); } function my_admin_print_footer_scripts() { $pointer_content = '<h3>iShift | Notice</h3>'; $pointer_content .= '<p>Added new functions to Edit Post section and few more options for users (authors and subscribers only).</p>'; ?> <script type="text/javascript"> //<![CDATA[ jQuery(document).ready( function($) { $('#menu-appearance').pointer({ position: 'top', close: function() { // Once the close button is hit } }).pointer('open'); }); //]]> </script> <?php }
以上是关于在管理区添加自定义指针的主要内容,如果未能解决你的问题,请参考以下文章
WooCommerce:将自定义 Metabox 添加到管理订单页面