Skip to content

Instantly share code, notes, and snippets.

@themenow
themenow / gist:eb67de94193d10000cb97163a859e856
Created February 15, 2018 12:49
Creating a Custom Page Title Bar Item
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() {