%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 = '' . $time_string . ''; echo '' . $posted_on . ''; } endif; if ( ! function_exists( 'bold_photography_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bold_photography_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( esc_html__( ', ', 'bold-photography' ) ); if ( $categories_list ) { echo '' . bold_photography_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'bold-photography' ) . '' . $categories_list . ''; } /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'bold-photography' ) ); if ( $tags_list ) { echo '' . bold_photography_get_svg( array( 'icon' => 'tag' ) ) . '' . __( 'Tags', 'bold-photography' ) . ',' . '' . $tags_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__( ', ', 'bold-photography' ) ); if ( ! is_wp_error( $categories_list ) ) { echo '' . bold_photography_get_svg( array( 'icon' => 'folder-open' ) ) . '' . __( 'Categories', 'bold-photography' ) . '' . $categories_list . ''; } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo '' . bold_photography_get_svg( array( 'icon' => 'comment' ) ); comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'bold-photography' ), 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', 'bold-photography' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'bold_photography_author_bio' ) ) : /** * Prints HTML with meta information for the author bio. */ function bold_photography_author_bio() { if ( '' !== get_the_author_meta( 'description' ) ) { get_template_part( 'template-parts/biography' ); } } endif; if ( ! function_exists( 'bold_photography_by_line' ) ) : /** * Prints HTML with meta information for the author bio. */ function bold_photography_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__( ' by ', 'bold-photography' ) . $byline . ''; } endif; if ( ! function_exists( 'bold_photography_cat_list' ) ) : /** * Prints HTML with meta information for the categories */ function bold_photography_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__( ', ', 'bold-photography' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '%1$s %2$s', esc_html__( 'Cat Links', 'bold-photography' ), $categories_list ); // WPCS: XSS OK. } } 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__( ' / ', 'bold-photography' ) ); if ( ! is_wp_error( $categories_list ) ) { printf( '%1$s %2$s', esc_html__( 'Cat Links', 'bold-photography' ), $categories_list ); // WPCS: XSS OK. } } } endif; if ( ! function_exists( 'bold_photography_entry_category_date' ) ) : /** * Prints HTML with category and tags for current post. * * Create your own bold_photography_entry_category_date() function to override in a child theme. * * @since Bold Photography 1.0 */ function bold_photography_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.', 'bold-photography' ), '' ); if ( 'jetpack-portfolio' === get_post_type() ) { $meta .= sprintf( '%1$s%2$s', sprintf( _x( 'Categories: ', 'Used before category names.', 'bold-photography' ) ), $portfolio_categories_list ); } $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'bold-photography' ) ); if ( $categories_list && bold_photography_categorized_blog() ) { $meta .= sprintf( '%1$s%2$s', sprintf( _x( 'Categories: ', 'Used before category names.', 'bold-photography' ) ), $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 ', 'bold-photography' ) ), esc_url( get_permalink() ), $time_string ); $meta .= '
'; return $meta; } endif; if ( ! function_exists( 'bold_photography_categorized_blog' ) ) : /** * Determines whether blog/site has more than one category. * * Create your own bold_photography_categorized_blog() function to override in a child theme. * * @since Bold Photography 1.0 * * @return bool True if there is more than one category, false otherwise. */ function bold_photography_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'bold_photography_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( 'bold_photography_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so bold_photography_categorized_blog should return true. return true; } else { // This blog has only 1 category so bold_photography_categorized_blog should return false. return false; } } endif; /** * Footer Text * * @get footer text from theme options and display them accordingly * @display footer_text * @action bold_photography_footer * * @since Bold Photography 1.0 */ function bold_photography_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', 'bold-photography' ), esc_attr( date_i18n( __( 'Y', 'bold-photography' ) ) ),''. 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', 'bold-photography' ) . ' ' . esc_html( $theme_data->get( 'Author' ) ) . ''; echo '
' . $footer_content . '
'; } add_action( 'bold_photography_credits', 'bold_photography_footer_content', 10 ); if ( ! function_exists( 'bold_photography_single_image' ) ) : /** * Display Single Page/Post Image */ function bold_photography_single_image() { global $post, $wp_query; if ( is_attachment() ) { $parent = $post->post_parent; $metabox_feat_img = get_post_meta( $parent, 'bold-photography-featured-image', true ); } else { $metabox_feat_img = get_post_meta( $post->ID, 'bold-photography-featured-image', true ); } if ( empty( $metabox_feat_img ) || ! is_singular() ) { $metabox_feat_img = 'default'; } if ( ( 'disabled' == $metabox_feat_img || ! has_post_thumbnail() || ( 'default' == $metabox_feat_img ) ) ) { echo ''; return false; } } endif; // bold_photography_single_image. if ( ! function_exists( 'bold_photography_archive_image' ) ) : /** * Display Post Archive Image */ function bold_photography_archive_image() { if ( ! has_post_thumbnail() ) { // Bail if there is no featured image. return; } bold_photography_post_thumbnail(); } endif; // bold_photography_archive_image. if ( ! function_exists( 'bold_photography_comment' ) ) : /** * Template for comments and pingbacks. * Used as a callback by wp_list_comments() for displaying the comments. */ function bold_photography_comment( $comment, $args, $depth ) { if ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type ) : ?>
  • >
    ', '' ); ?>
  • >
    says:', 'bold-photography' ), 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. */ ?> '; $portfolio_categories_list = get_the_term_list( get_the_ID(), 'jetpack-portfolio-type', '', '', '' ); if ( 'jetpack-portfolio' === get_post_type( ) ) { $meta .= sprintf( '' .'%1$s%2$s', sprintf( _x( 'Categories', 'Used before category names.', 'bold-photography' ) ), $portfolio_categories_list ); } $categories_list = get_the_category_list( ' ' ); if ( $categories_list && bold_photography_categorized_blog( ) ) { $meta .= sprintf( '' . '%1$s%2$s', sprintf( _x( 'Categories', 'Used before category names.', 'bold-photography' ) ), $categories_list ); } $meta .= ''; return $meta; } endif; if ( ! function_exists( 'bold_photography_entry_date_author' ) ) : /** * Prints HTML with category and tags for current post. * * Create your own bold_photography_entry_category_date() function to override in a child theme. * * @since Bold Photography 1.0 */ function bold_photography_entry_date_author() { $meta = '
    '; $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( '%3$s' . '%1$s%4$s', _x( 'Posted on', 'Used before publish date.', 'bold-photography' ), esc_url( get_permalink() ), esc_html__( 'Posted on ', 'bold-photography' ), $time_string ); // Get the author name; wrap it in a link. $byline = sprintf( /* translators: %s: post author */ __( 'By %s', 'bold-photography' ), '' . esc_html( get_the_author() ) . '' ); $meta .= sprintf( '', esc_html__( ' By ', 'bold-photography' ), $byline ); $meta .= '
    '; return $meta; } endif;