'; echo '' . esc_html( get_the_author() ) . ''; echo '

'; // Date Published echo '

'; echo ''; echo '

'; // Tax if ( get_post_type( $post ) === 'post' ) { // Category for Post echo '

'; echo ''; the_category( ',' ); echo ''; echo '

'; if ( get_the_terms( absint( $post->ID ), 'post_tag' ) ) { echo '

'; echo ''; the_tags( '', ',' . SHAPESHIFTER_NBSP ); echo ''; echo '

'; } } // Excerpt echo '
'; $excerpt = get_the_excerpt(); $excerpt_length = absint( apply_filters( ace()->getPrefixedFilterHook( 'excerpt_length' ), 200 ) ); if ( $excerpt !== '' ) { } else { $excerpt = $post->post_content; } do_action( ace()->getPrefixedActionHook( 'the_excerpt' ), $excerpt, $excerpt_length ); unset( $excerpt, $excerpt_length ); echo ''; esc_html_e( 'Read More', 'ace' ); echo ''; echo '
';