// bornready - display a few things in the sidebar before the dynamic wordpress stuff
// bornready global top sidebar content
echo sidebar_top_item();
// get the post id and category id use it to set up side menu content
$post_id = get_the_ID();
if($post_id) {
$post_categories = wp_get_post_categories( $post_id );
$category_id = 0;
foreach($post_categories as $c){
$cat = get_category( $c );
$category_id = $cat->cat_ID;
// just use first category
break;
}
}
echo sidebar_post_related_content($post_id);
echo sidebar_category_related_content($category_id);
//echo sidebar_optin("Want to stay in the loop?", "Sign Me Up", "1");
//echo sidebar_optin("help", "Sign Me Up", "1");
//echo $GLOBALS['wsdate'];
//echo $br_sidebar_content;
?>
get_sidebar(); ?>
The Comments: Your Turn!
You know more people read the comments than the article, right? Get stuck in!
echo fb_comments(get_the_ID()); ?>