'; // Get the author information $author_display_name = get_the_author_meta( 'display_name' ); $author_firstname = get_the_author_meta( 'user_firstname' ); $author_lastname = get_the_author_meta( 'user_lastname' ); $author_email = get_the_author_meta( 'user_email' ); $author_url = get_the_author_meta( 'user_url' ); $author_description = get_the_author_meta( 'user_description' ); // Read in options $arixwp_date = trim( get_post_meta( get_the_ID(),'_arixwp_post_date',TRUE ) ); $arixwp_author = trim( get_post_meta( get_the_ID(),'_arixwp_post_author',TRUE ) ); $arixwp_author_name = trim( get_post_meta( get_the_ID(),'_arixwp_post_author_name',TRUE ) ); $arixwp_avatar = trim( get_post_meta( get_the_ID(),'_arixwp_post_author_avatar',TRUE ) ); $arixwp_tags = trim( get_post_meta( get_the_ID(),'_arixwp_post_tag',TRUE ) ); $arixwp_categories = trim( get_post_meta( get_the_ID(),'_arixwp_post_cats',TRUE ) ); $arixwp_sidebar = get_option( 'arixwp_sidebar' ); $arixwp_sidebar_page = trim( get_post_meta( get_the_ID(),'_arixwp_sidebar_page',TRUE ) ); $arixwp_related_show = get_option( 'arixwp_related_show', 'show' ); if ( !$arixwp_sidebar_page || $arixwp_sidebar_page == '' ) $arixwp_sidebar_page = ''; if ( !$arixwp_tags || $arixwp_tags == '' ) $arixwp_tags = 'show'; if ( !$arixwp_categories || $arixwp_categories == '' ) $arixwp_categories = 'show'; if ( !$arixwp_date || $arixwp_date == '' ) $arixwp_date = 'show'; if ( !$arixwp_author || $arixwp_author == '' ) $arixwp_author = 'show'; if ( !$arixwp_avatar || $arixwp_avatar == '' ) $arixwp_avatar = 'show'; if ( !$arixwp_author_name || $arixwp_author_name == '' ) $arixwp_author_name = 'show'; if ( $arixwp_date == 'hide' ) { $title_class = 'title dateless'; $byline_class = 'byline dateless'; } else { $title_class = 'title'; $byline_class = 'byline'; } // The Date if ( $arixwp_date == 'show' ) arixwp_date_format(); echo '
' ; echo '

' . get_the_title() . '

'; echo '

'; // Show Author Block if ( $arixwp_author == "show" ) { echo ' by '; // show avatar if selected if ( $arixwp_avatar ) { // 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_author_name == 'show' ) { if ( $author_url ) echo ' ' . get_the_author_link() . ''; } } // End Author Block echo '

'; echo '
'; echo '
'; the_content(); echo '
 
'; wp_link_pages( array( 'before' => '' ) ); echo '
'; if ( $arixwp_categories == 'show' ) echo ' '; if ( $arixwp_tags == 'show' ) if ( has_tag() ) echo ''; edit_post_link( __( 'Edit', THEMENAME ), '', '' ); echo '
'; echo ''; echo '
'; echo '
'; echo ''; echo ARIXWP_LOOP_FOOTER; // Show Related Posts if ( $arixwp_related_show == 'show' ) arixwp_related(); // Do comments if ( comments_open() ) comments_template( '', true ); } } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// get_footer(); ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ?>