>
id="main-area">
and beginning
tags, with necessary attributes.
echo $blogcentral_wrapper[0];
echo $blogcentral_header;
while ( $posts->have_posts() ) {
$posts->the_post();
// Reset variables
$blogcentral_img_wrap_class = '';
$blogcentral_media_wrap_style = '';
$blogcentral_meta_wrap_class = '';
$blogcentral_meta_wrap_style = '';
$blogcentral_extra_li_class = '';
$extra_li_attrs = '';
// Get post meta
$post_id = $posts->post->ID;
$blogcentral_post_meta = get_post_meta( $post_id, 'blogcentral_options', true );
$blogcentral_post_opts = array_merge( $blogcentral_layout_opts, array( $blogcentral_post_meta ) );
// Add class for sticky post
if ( is_sticky() && ! empty( $posts_general['sticky_display'] ) ) {
$blogcentral_post_opts['blogcentral_extra_li_class'] = ' blogcentral-sticky';
}
$format = '';
if ( $format = get_post_format() ) {
$format = '-' . $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 );
// 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 ) );
}
// Matching ending tags for the wrapper and
tags
echo $blogcentral_ender . $blogcentral_wrapper[1];
// Output page navigation
if ( $posts->max_num_pages > 1 && isset( $posts_general['posts_nav'] ) &&
$posts_general['posts_nav'] ) {
blogcentral_traditional_posts_nav( $posts );
}
}
?>
';
dynamic_sidebar( 'post-posts-widget' );
echo '
';
}
get_footer();