PHP code example of jazzsequence / notifications
1. Go to this page and download the library: Download jazzsequence/notifications 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/ */
jazzsequence / notifications example snippets
function my_test_filter( $output ) {
$output = '<span class="whoops-i-did-it-again" style="color: red;">'.notf_message().'</span>';
return $output;
}
add_filter( 'notf_notification_filter', 'my_test_filter' );
do_action( 'tha_body_top' );