comment_type ) : case 'pingback' : case 'trackback' : ?>
  • id="comment-">

    ', '' ); ?>

  • id="li-comment-">
    %1$s %2$s', get_comment_author_link(), // If current post author is also comment author, make it known visually. ( $comment->user_id === $post->post_author ) ? '' . __( 'Post author', 'macronine-lite' ) . '' : '' ); printf( '', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), /* translators: 1: date, 2: time */ sprintf( __( '%1$s at %2$s', 'macronine-lite' ), get_comment_date(), get_comment_time() ) ); ?>
    comment_approved ) : ?>

    ', '

    ' ); ?>
    __( 'Reply', 'macronine-lite' ), 'after' => ' ', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    ', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'macronine-lite' ), get_the_author() ) ), get_the_author() ); } endif; add_action( 'customize_register', 'themename_customize_register' ); function themename_customize_register($wp_customize) { $wp_customize->add_section( 'ignite_custom_logo', array( 'title' => 'Logo', 'description' => 'Display a custom logo?', 'priority' => 25, ) ); $wp_customize->add_setting( 'custom_logo', array( 'default' => '', 'sanitize_callback' => 'macroninelite_the_custom_logo', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'custom_logo', array( 'label' => 'Custom logo', 'section' => 'ignite_custom_logo', 'settings' => 'custom_logo', ) ) ); } if ( ! function_exists( 'macroninelite_the_custom_logo' ) ) : function macroninelite_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; // add subtitle to posts and pages function vg_subtitle($posttitle) { global $post; $subtitle = get_post_meta ($post->ID, 'Subtitle', true); echo $posttitle; if ($subtitle) echo ' - ' . $subtitle; } add_action('thematic_postheader_posttitle','vg_subtitle'); function macronine_widgets_init() { register_sidebar(array( 'name' => __('Sidebar', 'macronine-lite'), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ', )); } add_action('widgets_init', 'macronine_widgets_init'); function get_breadcrumb() { echo 'Home'; if (is_category() || is_single()) { echo "  »  "; the_category(' • '); if (is_single()) { echo "   »   "; the_title(); } } elseif (is_page()) { echo "  »  "; echo the_title(); } elseif (is_search()) { echo "  »  Search Results for... "; echo '"'; echo the_search_query(); echo '"'; } } function header_fallback() { echo ''; } ?>