'; do_action( 'bloglo_before_entry_meta_elements' ); // Loop through meta items. foreach ( $bloglo_meta_elements as $bloglo_meta_item ) { // Call a template tag function. if ( function_exists( 'bloglo_entry_meta_' . $bloglo_meta_item ) ) { call_user_func( 'bloglo_entry_meta_' . $bloglo_meta_item ); } } // Add edit post link. $bloglo_edit_icon = bloglo()->icons->get_meta_icon( 'edit', bloglo()->icons->get_svg( 'edit-3', array( 'aria-hidden' => 'true' ) ) ); bloglo_edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ $bloglo_edit_icon . __( 'Edit %s', 'bloglo' ), bloglo_get_allowed_html_tags() ), get_the_title() ), '', '' ); do_action( 'bloglo_after_entry_meta_elements' ); echo '
'; } do_action( 'bloglo_after_entry_meta' );