[](https://gitlab.com/wpdesk/wp-notice/pipelines) [](https://gitlab.com/wpdesk/wp-notice/commits/master) [](https://packagist.org/packages/wpdesk/wp-notice) [](https://packagist.org/packages/wpdesk/wp-notice) [](https://packagist.org/packages/wpdesk/wp-notice) [](https://packagist.org/packages/wpdesk/wp-notice) WordPress Library to display notices in admin area. =================================================== wp-notice is a simple library for WordPress plugins to display notices in admin area. This library can display simple notices (error, warning, success, info) and dismissible notices. It also handles dismiss functionality with AJAX requests. ## Requirements PHP 5.5 or later. ## Composer You can install the bindings via [Composer](http://getcomposer.org/). Run the following command: ```bash composer require wpdesk/wp-notice ``` To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): ```php require_once 'vendor/autoload.php'; ``` ## Manual instalation If you do not wish to use Composer, you can [download the latest release](https://gitlab.com/wpdesk/wp-notice/-/jobs/artifacts/master/download?job=library). Then, to use the Notices, include the init.php file. ```php require_once('/path/to/wp-desk/wp-notice/init.php'); ``` ## Getting Started Simple usage looks like: ```php $notice = wpdesk_wp_notice('Notice text goes here'); // Is equivalent to: $notice = WPDeskWpNotice('Notice text goes here'); // Is equivalent to: $notice = \WPDesk\Notice\Factory::notice('Notice text goes here'); // Is equivalent to: $notice = new \WPDesk\Notice\Notice('Notice text goes here'); ``` Notice must be used before WordPress action `admin_notices`. WordPress admin actions order is listed [here](https://codex.wordpress.org/Plugin_API/Action_Reference#Actions_Run_During_an_Admin_Page_Request). ## Project documentation PHPDoc: https://wpdesk.gitlab.io/wp-notice/index.html