%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $posted_on = '' . esc_html__( 'Posted on ', 'blakely' ) . $time_string . ''; echo '' . $posted_on . ''; } endif; if ( ! function_exists( 'blakely_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function blakely_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { $categories_list = get_the_category_list( ' ' ); // Separate list by space. if ( $categories_list ) { echo '' . blakely_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'blakely' ) . '' . $categories_list . ''; } $tags_list = get_the_tag_list( '', ' ' ); // Separate list by space. if ( $tags_list ) { echo '' . blakely_get_svg( array( 'icon' => 'tag' ) ) . '' . __( 'Tags', 'blakely' ) . ',' . '' . $tags_list . ''; } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo '' . blakely_get_svg( array( 'icon' => 'comment' ) ); comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'blakely' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'blakely' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'blakely_author_bio' ) ) : /** * Prints HTML with meta information for the author bio. */ function blakely_author_bio() { if ( '' !== get_the_author_meta( 'description' ) ) { get_template_part( 'template-parts/biography' ); } } endif; if ( ! function_exists( 'blakely_by_line' ) ) : /** * Prints HTML with meta information for the author bio. */ function blakely_by_line() { $post_id = get_queried_object_id(); $post_author_id = get_post_field( 'post_author', $post_id ); $byline = ''; $byline .= '' . esc_html( get_the_author_meta( 'nickname', $post_author_id ) ) . ''; echo '' . esc_html__( 'Posted By ', 'blakely' ) . $byline . ''; } endif; if ( ! function_exists( 'blakely_cat_list' ) ) : /** * Prints HTML with meta information for the categories */ function blakely_cat_list() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the / */ $categories_list = get_the_category_list( esc_html__( ', ', 'blakely' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '%1$s %2$s', esc_html__( 'Cat Links', 'blakely' ), $categories_list ); } } elseif ( 'jetpack-portfolio' == get_post_type() ) { /* translators: used between list items, there is a space after the / */ $categories_list = get_the_term_list( get_the_ID(), 'jetpack-portfolio-type', '', esc_html__( ' / ', 'blakely' ) ); if ( ! is_wp_error( $categories_list ) ) { printf( '%1$s %2$s', esc_html__( 'Cat Links', 'blakely' ), $categories_list ); } } } endif; if ( ! function_exists( 'blakely_entry_category_date' ) ) : /** * Prints HTML with category and tags for current post. * * Create your own blakely_entry_category_date() function to override in a child theme. * * @since Blakely 1.0 */ function blakely_entry_category_date() { $meta = '
'; $portfolio_categories_list = get_the_term_list( get_the_ID(), 'jetpack-portfolio-type', '', esc_html_x( ', ', 'Used between list items, there is a space after the comma.', 'blakely' ), '' ); if ( 'jetpack-portfolio' === get_post_type() ) { $meta .= sprintf( '%1$s%2$s', sprintf( _x( 'Categories: ', 'Used before category names.', 'blakely' ) ), $portfolio_categories_list ); } $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'blakely' ) ); if ( $categories_list && blakely_categorized_blog() ) { $meta .= sprintf( '%1$s%2$s', sprintf( _x( 'Categories: ', 'Used before category names.', 'blakely' ) ), $categories_list ); } $time_string = ''; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $meta .= sprintf( '%1$s%3$s', sprintf( __( 'Posted on ', 'blakely' ) ), esc_url( get_permalink() ), $time_string ); $meta .= '
'; return $meta; } endif; if ( ! function_exists( 'blakely_categorized_blog' ) ) : /** * Determines whether blog/site has more than one category. * * Create your own blakely_categorized_blog() function to override in a child theme. * * @since Blakely 1.0 * * @return bool True if there is more than one category, false otherwise. */ function blakely_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'blakely_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'fields' => 'ids', // We only need to know if there is more than one category. 'number' => 2, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'blakely_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so blakely_categorized_blog should return true. return true; } else { // This blog has only 1 category so blakely_categorized_blog should return false. return false; } } endif; /** * Footer Text * * @get footer text from theme options and display them accordingly * @display footer_text * @action blakely_footer * * @since Blakely 1.0 */ function blakely_footer_content() { $theme_data = wp_get_theme(); $footer_content = sprintf( _x( 'Copyright © %1$s %2$s %3$s', '1: Year, 2: Site Title with home URL, 3: Privacy Policy Link', 'blakely' ), esc_attr( date_i18n( __( 'Y', 'blakely' ) ) ), ''. esc_attr( get_bloginfo( 'name', 'display' ) ) . '', function_exists( 'get_the_privacy_policy_link' ) ? get_the_privacy_policy_link('| ') : '' ) . ' | ' . esc_html( $theme_data->get( 'Name' ) ) . ' ' . esc_html__( 'by', 'blakely' ) . ' ' . esc_html( $theme_data->get( 'Author' ) ) . ''; if ( ! $footer_content ) { // Bail early if footer content is empty return; } $search = array( '[the-year]', '[site-link]', '[privacy-policy-link]' ); $replace = array( esc_attr( date_i18n( __( 'Y', 'blakely' ) ) ), ''. esc_attr( get_bloginfo( 'name', 'display' ) ) . '', function_exists( 'get_the_privacy_policy_link' ) ? get_the_privacy_policy_link() : '' ); $footer_content = str_replace( $search, $replace, $footer_content ); echo '
' . $footer_content . '
'; } add_action( 'blakely_credits', 'blakely_footer_content', 10 ); if ( ! function_exists( 'blakely_single_image' ) ) : /** * Display Single Page/Post Image */ function blakely_single_image() { global $post, $wp_query; $featured_image = get_theme_mod( 'blakely_single_layout', 'disabled' ); if ( ! has_post_thumbnail() || 'disabled' == $featured_image ) { echo ''; return false; } else { ?>
comment_type || 'trackback' == $comment->comment_type ) : ?>
  • >
    ', '' ); ?>
  • >
    says:', 'blakely' ), sprintf( '%s', get_comment_author_link() ) ); ?> ', '' ); ?>
    comment_approved ) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '', 'after' => '', ) ) ); ?>
    is needed. WordPress will know where to add it. */ ?>