%s', __( 'Featured', 'directory-starter' ) ); } $format = get_post_format(); if ( current_theme_supports( 'post-formats', $format ) ) { printf( '%1$s%3$s', sprintf( '%s ', _x( 'Format', 'Used before post format.', 'directory-starter' ) ), esc_url( get_post_format_link( $format ) ), get_post_format_string( $format ) ); } if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) { $time_string = ''; $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), get_the_date(), esc_attr( get_the_modified_date( 'c' ) ), get_the_modified_date() ); printf( '%1$s %3$s', _x( 'Posted on', 'Used before publish date.', 'directory-starter' ), esc_url( get_permalink() ), $time_string ); } if ( 'post' == get_post_type() ) { if ( is_singular() || is_multi_author() ) { printf( '%1$s %3$s', _x( 'Author', 'Used before post author name.', 'directory-starter' ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), get_the_author() ); } $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'directory-starter' ) ); if ( $categories_list ) { printf( '%1$s %2$s', _x( 'Categories', 'Used before category names.', 'directory-starter' ), $categories_list ); } $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'directory-starter' ) ); if ( $tags_list ) { printf( '%1$s %2$s', _x( 'Tags', 'Used before tag names.', 'directory-starter' ), $tags_list ); } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( __( 'Leave a comment', 'directory-starter' ), __( '1 Comment', 'directory-starter' ), __( '% Comments', 'directory-starter' ) ); echo ''; } }