'; do_action( 'bloghash_before_entry_meta_elements' ); // Loop through meta items. foreach ( $bloghash_meta_elements as $bloghash_meta_item ) { // Call a template tag function. if ( function_exists( 'bloghash_entry_meta_' . $bloghash_meta_item ) ) { call_user_func( 'bloghash_entry_meta_' . $bloghash_meta_item ); } } // Add edit post link. $bloghash_edit_icon = bloghash()->icons->get_meta_icon( 'edit', bloghash()->icons->get_svg( 'edit-3', array( 'aria-hidden' => 'true' ) ) ); bloghash_edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ $bloghash_edit_icon . __( 'Edit %s', 'bloghash' ), bloghash_get_allowed_html_tags() ), get_the_title() ), '', '' ); do_action( 'bloghash_after_entry_meta_elements' ); echo '
'; } do_action( 'bloghash_after_entry_meta' );