We'll create fresh WordPress site with Hyakunin Isshu Admin Bar installed. You have 20 minutes to test the plugin after that site we'll be deleted.
/** ==================================================
* Filter for capability.
*
*/
add_filter( 'hyakunin_isshu_bar_user_can', function(){ return 'read'; }, 10, 1 );
/** ==================================================
* Filter for interval.
*
*/
add_filter( 'hyakunin_isshu_bar_interval_sec', function(){ return 5; }, 10, 1 );
/** ==================================================
* Filter for Tanka array.
*
*/
add_filter(
'hyakunin_isshu_bar_array',
function() {
$tanka_arr = array(
array(
'tanka' => 'Notice of Drinking Party 1 !',
'author' => 'Katsushi',
'source' => 'February 22, 2023, 7:00 p.m. - 9:00 p.m.',
'subject' => 'Restaurant WP',
),
array(
'tanka' => 'Notice of Drinking Party 2 !',
'author' => 'kawamori',
'source' => 'March 22, 2023, 7:00 p.m. - 9:00 p.m.',
'subject' => 'Sushi bar WP',
),
);
return $tanka_arr;
},
10,
1
);
/** ==================================================
* Filter for Tanka Author title.
*
*/
add_filter( 'hyakunin_isshu_bar_author_title', function(){ return 'Banquet Director'; }, 10, 1 );
/** ==================================================
* Filter for Source title.
*
*/
add_filter( 'hyakunin_isshu_bar_source_title', function(){ return 'Date and Time'; }, 10, 1 );
/** ==================================================
* Filter for Subject title.
*
*/
add_filter( 'hyakunin_isshu_bar_subject_title', function(){ return 'Place'; }, 10, 1 );