";} if (is_string($posttypes)) {$posttype = $posttypes;} else {$posttype = '';} // --- clear div --- echo '
'; // --- article tag open --- bioship_html_comment('article.entry'); $attributes = hybrid_get_attr('post'); echo '
'; // --- Before Entry --- bioship_do_action('bioship_before_entry'); // --- Attachment / Media Handler --- bioship_do_action('bioship_media_handler'); // --- Entry Header --- bioship_do_action('bioship_entry_header'); // --- Thumbnail --- bioship_do_action('bioship_thumbnail'); // --- debug WP Query --- if (THEMEDEBUG || (isset($_GET['debugquery']) && ($_GET['debugquery'] == 'yes')) ) : // 1.9.5: allow for separate query-only debugging global $wp_query; $debugquery = $wp_query; echo "
"; endif; // Excerpt Display // --------------- if (is_search() || (is_archive() && !is_singular($posttype)) || !is_singular($posttype)) : // --- Before Excerpt --- bioship_do_action('bioship_before_excerpt'); // --- Entry Excerpt Content --- bioship_html_comment('.entry-summary'); $attributes = hybrid_get_attr('entry-summary'); echo '
'; // --- the_excerpt() --- bioship_do_action('bioship_the_excerpt'); // --- close entry summary div --- echo '
'; bioship_html_comment('/.entry-summary'); // --- After Excerpt --- bioship_do_action('bioship_after_excerpt'); // --- Entry Footer --- bioship_do_action('bioship_entry_footer'); else : // Full Content Display // -------------------- // --- Before Singular --- bioship_do_action('bioship_before_singular'); // --- Author Bio (top) --- bioship_do_action('bioship_author_bio_top'); // --- Before Main Content --- bioship_do_action('bioship_before_the_content'); // --- Full Entry Content --- bioship_html_comment('.entry-content'); $attributes = hybrid_get_attr('entry-content'); echo '
'; // --- the_content --- bioship_do_action('bioship_the_content'); // --- clear div --- echo '
'; // --- close content div --- echo '
'; bioship_html_comment('/.entry-content'); // --- After Main Content --- bioship_do_action('bioship_after_the_content'); // --- Author Bio (bottom) --- bioship_do_action('bioship_author_bio_bottom'); // --- Entry Footer --- bioship_do_action('bioship_entry_footer'); // --- After Singular --- bioship_do_action('bioship_after_singular'); // --- Comments --- bioship_do_action('bioship_comments'); endif; // --- After Entry --- bioship_do_action('bioship_after_entry'); // --- close article tag --- echo '
'; bioship_html_comment('/article.entry');