%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 . ''; $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-on', 'my-music-band' ) . '' . $posted_on . ''; echo '' . '' . esc_html__( 'By line', 'my-music-band' ) . '' . $byline . ''; } endif; if ( ! function_exists( 'my_music_band_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function my_music_band_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__( ' ', 'my-music-band' ) ); if ( $categories_list ) { echo '' . '' . __( 'Categories', 'my-music-band' ) . '' . $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', 'my-music-band' ) ); if ( $tags_list ) { echo '' . '' . __( 'Tags', 'my-music-band' ) . ',' . '' . $tags_list . ''; } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'my-music-band' ), 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', 'my-music-band' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'my_music_band_author_bio' ) ) : /** * Prints HTML with meta information for the author bio. */ function my_music_band_author_bio() { if ( '' !== get_the_author_meta( 'description' ) ) { get_template_part( 'template-parts/biography' ); } } endif; if ( ! function_exists( 'my_music_band_cat_list' ) ) : /** * Prints HTML with meta information for the categories */ function my_music_band_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__( ' / ', 'my-music-band' ) ); if ( $categories_list ) { /* translators: 1: list of categories. */ printf( '%1$s %2$s', esc_html__( 'Cat Links', 'my-music-band' ), $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__( ' / ', 'my-music-band' ) ); if ( ! is_wp_error( $categories_list ) ) { printf( '%1$s %2$s', esc_html__( 'Cat Links', 'my-music-band' ), $categories_list ); // WPCS: XSS OK. } } } endif; if ( ! function_exists( 'my_music_band_entry_category_date' ) ) : /** * Prints HTML with category and tags for current post. * * Create your own my_music_band_entry_category_date() function to override in a child theme. * * @since My Music Band 0.1 */ function my_music_band_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.', 'my-music-band' ), '' ); if ( 'jetpack-portfolio' === get_post_type() ) { $meta .= sprintf( '%1$s%2$s', sprintf( _x( 'Categories: ', 'Used before category names.', 'my-music-band' ) ), $portfolio_categories_list ); $meta .= '' . _x( ' – ', 'Post meta separator', 'my-music-band' ) . ''; } $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'my-music-band' ) ); if ( $categories_list && my_music_band_categorized_blog() ) { $meta .= sprintf( '%1$s%2$s', sprintf( _x( 'Categories: ', 'Used before category names.', 'my-music-band' ) ), $categories_list ); $meta .= '' . _x( ' – ', 'Post meta separator', 'my-music-band' ) . ''; } $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 ', 'my-music-band' ) ), esc_url( get_permalink() ), $time_string ); $meta .= '
'; return $meta; } endif; if ( ! function_exists( 'my_music_band_categorized_blog' ) ) : /** * Determines whether blog/site has more than one category. * * Create your own my_music_band_categorized_blog() function to override in a child theme. * * @since My Music Band 0.1 * * @return bool True if there is more than one category, false otherwise. */ function my_music_band_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'my_music_band_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( 'my_music_band_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so my_music_band_categorized_blog should return true. return true; } else { // This blog has only 1 category so my_music_band_categorized_blog should return false. return false; } } endif; /** * Footer Text * * @get footer text from theme options and display them accordingly * @display footer_text * @action my_music_band_footer * * @since My Music Band 0.1 */ if ( ! function_exists( 'my_music_band_footer_content' ) ): function my_music_band_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', 'my-music-band' ), esc_attr( date_i18n( __( 'Y', 'my-music-band' ) ) ), ''. 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', 'my-music-band' ) . ' ' . esc_html( $theme_data->get( 'Author' ) ) . ''; echo '
' . $footer_content . '
'; } endif; add_action( 'my_music_band_credits', 'my_music_band_footer_content', 10 ); if ( ! function_exists( 'my_music_band_single_image' ) ) : /** * Display Single Page/Post Image */ function my_music_band_single_image() { global $post, $wp_query; // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); if ( $post) { if ( is_attachment() ) { $parent = $post->post_parent; $metabox_feat_img = get_post_meta( $parent,'my-music-band-featured-image', true ); } else { $metabox_feat_img = get_post_meta( $page_id,'my-music-band-featured-image', true ); } } if ( empty( $metabox_feat_img ) || ( !is_page() && !is_single() ) ) { $metabox_feat_img = 'default'; } $featured_image = 'disabled'; if ( ( 'disabled' == $metabox_feat_img || ! has_post_thumbnail() || ( 'default' == $metabox_feat_img && 'disabled' == $featured_image ) ) ) { echo ''; return false; } else { $class = ''; if ( 'default' == $metabox_feat_img ) { $class = $featured_image; } else { $class = 'from-metabox ' . $metabox_feat_img; $featured_image = $metabox_feat_img; } ?>
comment_type || 'trackback' == $comment->comment_type ) : ?>
  • >
    ', '' ); ?>
  • >
    says:', 'my-music-band' ), 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. */ ?>