'; do_action( 'blogun_before_entry_meta_elements' ); // Loop through meta items. foreach ( $blogun_meta_elements as $blogun_meta_item ) { // Call a template tag function. if ( function_exists( 'blogun_entry_meta_' . $blogun_meta_item ) ) { call_user_func( 'blogun_entry_meta_' . $blogun_meta_item ); } } // Add edit post link. $blogun_edit_icon = blogun()->icons->get_meta_icon( 'edit', blogun()->icons->get_svg( 'edit-3', array( 'aria-hidden' => 'true' ) ) ); blogun_edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ $blogun_edit_icon . __( 'Edit %s', 'blogun' ), blogun_get_allowed_html_tags() ), get_the_title() ), '', '' ); do_action( 'blogun_after_entry_meta_elements' ); echo '
'; } do_action( 'blogun_after_entry_meta' );