在管理区添加自定义指针

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在管理区添加自定义指针相关的知识,希望对你有一定的参考价值。

  1. add_action( 'admin_enqueue_scripts', 'my_admin_enqueue_scripts' );
  2. function my_admin_enqueue_scripts() {
  3. wp_enqueue_style( 'wp-pointer' );
  4. wp_enqueue_script( 'wp-pointer' );
  5. add_action( 'admin_print_footer_scripts', 'my_admin_print_footer_scripts' );
  6. }
  7. function my_admin_print_footer_scripts() {
  8. $pointer_content = '<h3>iShift | Notice</h3>';
  9. $pointer_content .= '<p>Added new functions to Edit Post section and few more options for users (authors and subscribers only).</p>';
  10. ?>
  11. <script type="text/javascript">
  12. //<![CDATA[
  13. jQuery(document).ready( function($) {
  14. $('#menu-appearance').pointer({
  15. content: '<?php echo $pointer_content; ?>',
  16. position: 'top',
  17. close: function() {
  18. // Once the close button is hit
  19. }
  20. }).pointer('open');
  21. });
  22. //]]>
  23. </script>
  24. <?php
  25. }

以上是关于在管理区添加自定义指针的主要内容,如果未能解决你的问题,请参考以下文章

使用 sbrk 自定义内存管理

WooCommerce:将自定义 Metabox 添加到管理订单页面

在 django 中覆盖管理模板以添加自定义 javascript

添加自定义 Django 管理操作

在 CUDA 中混合自定义内存管理和推力

如何在 Django 管理中的字段旁边添加自定义按钮?