This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('plasmid_page_title_bar_items', 'my_page_title_bar_item'); | |
function my_page_title_bar_item($items) { | |
$items['item_name'] = array( | |
'label' => esc_attr__('Label', 'textdomain'), | |
'callback' => 'my_item_display_function' //Callback function to display your item | |
); | |
return $items; | |
} | |
function my_item_display_function() { |