Add New Blog Entry/Post Meta Item
function myprefix_entry_single_meta_sections( $sections ) {
$sections['new_section'] = function() {
$icon = wpex_get_theme_icon_html( 'folder-o', 'wpex-mr-10' );
echo $icon .'Your stuff here';
};
return $sections;
}
add_filter( 'wpex_blog_entry_meta_sections', 'myprefix_entry_single_meta_sections' );
add_filter( 'wpex_blog_single_meta_sections', 'myprefix_entry_single_meta_sections' );
All PHP snippets should be added via child theme's functions.php file or via the Code Snippets Plugin (or alternative plugin)