> '; // The Date if ( $arixwp_blog_date == 'show' ) arixwp_date_format(); if ( $arixwp_blog_date == 'hide' ) { $title_class = 'title dateless'; $byline_class = 'byline dateless'; } else { $title_class = 'title'; $byline_class = 'byline'; } $post_title = get_the_title(); if ( !$post_title ) $post_title = 'No post title set'; // The post title echo '

' . $post_title . '

'; echo '

'; // Show Author Block if ( $arixwp_blog_author == "show" ) { echo __( ' by', THEMENAME ) . ' '; // show avatar if selected if ( $arixwp_blog_avatar == "show" ) { // link to authors website if ( $author_url ) { echo ' '; // if no website link to post } else { echo ' '; } echo get_avatar( get_the_author_meta('ID'), 18 ); echo ''; } if ( $arixwp_blog_author_name == 'show' ) { if ( $author_url ) { echo ' ' . get_the_author_link() . ''; } else { echo ' ' . $author_display_name . ''; } } } // End Author Block echo '

'; echo '
'; echo '
'; if ( has_post_thumbnail( $post->ID ) ) { echo '

'; echo ''; the_post_thumbnail(); echo ''; echo '

'; } // show either the full post or the excerpt if ( $arixwp_blog_display == 'content' ) { the_content(); } else { echo '

'; the_excerpt(); echo '

'; } echo '
'; echo '
 
'; echo '

'; // show or hide comments button if ( $arixwp_blog_comments_show == 'show' ) { echo '' . $arixwp_blog_comments; // show or hide comments count if ( $arixwp_blog_comments_count == 'show' ) { echo ' (';comments_number( '0', '1', '%' );echo ')'; } echo ''; } // show or hide read more button if ( $arixwp_blog_more_show == 'show' ) { echo '' . $arixwp_blog_more . ''; } echo '

'; echo '
 
'; echo ''; echo ARIXWP_LOOP_FOOTER; ?>