PHP code example of piotrpress / wordpress-notice
1. Go to this page and download the library: Download piotrpress/wordpress-notice library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
piotrpress / wordpress-notice example snippets
namespace PiotrPress\WordPress;
// Example #1
echo new Notice( 'This is an example notice message', Notice::ERROR );
// Example #2
Hooks::add( new Notice( 'This is an example notice message', Notice::ERROR ) );