什么是WP_INTERNAL_POINTERS核心类?

时间:2021-02-21 作者:Álvaro Franz

这个documentation 没有很好地解释它,我想了解它是什么以及它存在的原因。

1 个回复
最合适的回答,由SO网友:Tom J Nowell 整理而成

它实现了指针功能,这是v3.3中引入的UX更改,以帮助您在第一次遇到新功能时指出它们

enter image description here

你可以自己使用这个wp-pointer 然后使用类似以下代码编写脚本:

jQuery(document).ready( function($) {
    $(\'#menu-appearance\').pointer({
        content: \'<h3>Edit The Appearance</h3><p>Edit the appearance of your Wordpress theme.</p>\',
        position: {
               edge: \'left\',
               align: \'center\'
           },
        close: function() {
            // Once the close button is hit
        }
    }).pointer(\'open\');
});
WP_Internal_Pointers 帮助WP Admin PHP创建WordPress本身使用的管理指针,但是,这些指针似乎不再使用。实现每个指针的函数都是空的,并且为了向后兼容而保留该类。

虽然指针仍然作为一种功能存在,但在现代WordPress核心开发中,指针已经过时了。