文件名称:wp-notify:小型通知类,用于管理WordPress管理员通知
文件大小:11KB
文件格式:ZIP
更新时间:2024-06-14 02:32:09
PHP
通知 一个小的通知类,用于管理WordPress管理员通知。 用法 首先,您使用自定义前缀(通知的命名空间)来初始化您的类 $notify = new wpplex\WP_Notify\WP_Notify( 'my-notif' ); 创建您的第一个通知 $id = 'notif-xxy'; $content = 'some random notif text'; $type = 'error'; $hide_button = true; $notify->add_notification( $id, $content, $type, $hide_button ); 显示您的通知 $id = 'notif-xxy'; $display_count = 20; // times $notify->display_notification( $id, $display_count );
【文件预览】:
wp-notify-master
----LICENSE(18KB)
----assets()
--------js()
--------css()
----README.md(670B)
----WP_Notify.php(7KB)
----composer.json(526B)