id="main-area">
';
// Output the wrapping
and beginning
';
}// End if dynamic sidebar.
// Display comments.
comments_template( '', true );
// Output posts navigation.
blogcentral_post_nav();
} //End if have_posts()
?>
- tags, with necessary attributes.
echo $blogcentral_wrapper[0];
echo $blogcentral_header;
the_post();
// Get post meta
$post_id = $wp_query->post->ID;
$blogcentral_post_meta = '';
global $fourbzcore_plugin;
if ( isset( $fourbzcore_plugin ) && method_exists( $fourbzcore_plugin, 'get_post_meta' ) ) {
$blogcentral_post_meta = $fourbzcore_plugin->get_post_meta( $post_id );
}
$blogcentral_post_opts = array_merge( $blogcentral_layout_opts, (array)$blogcentral_post_meta );
$format = get_post_format();
if ( $format && 'status' !== $format && 'chat' !== $format && 'aside' !== $format ) {
$format = '-' . $format;
} else {
$format = '';
}
// Html fragments for classes and styles to be added to each post item.
$blogcentral_post_opts = blogcentral_construct_inner_classes_styles( $blogcentral_post_opts );
// Is a single post, so need to show all post information.
$blogcentral_layout_opts['show_title'] = false;
$blogcentral_layout_opts['show_content'] = $blogcentral_layout_opts['show_author'] =
$blogcentral_layout_opts['show_date'] = $blogcentral_layout_opts['show_categories'] =
$blogcentral_layout_opts['show_tags'] = $blogcentral_layout_opts['show_social'] =
$blogcentral_layout_opts['show_stats'] = $blogcentral_layout_opts['show_icons'] = true;
// Get the default featured image if has one.
$blogcentral_thumb = '';
if ( has_post_thumbnail() ) :
$blogcentral_thumb = get_the_post_thumbnail( $post_id, 'full' );
endif;
/**
* Template for post format content.
*/
include( locate_template( 'content' . $format . '.php', false, false ) );
// Output matching ending tags for the
wrapper and
';
dynamic_sidebar( 'single-post-after-widget' );
echo '- tags
echo $blogcentral_ender . $blogcentral_wrapper[1];
?>