Skip to content

Snippet: Add New Blog Entry/Post Meta Item

function myprefix_add_blog_meta_blocks( $blocks ) {
	$blocks['new_section'] = function() {
		$icon = wpex_get_theme_icon_html( 'folder-o', 'wpex-mr-10' );
		echo  $icon .'Your stuff here';
	};
	return $blocks;
}
add_filter( 'totaltheme/blog/meta_blocks/singular_blocks', 'myprefix_add_blog_meta_blocks' );
add_filter( 'totaltheme/blog/meta_blocks/entry_blocks', 'myprefix_add_blog_meta_blocks' );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top