See anything out of whack?
<?php
/**
* The Sidebar containing the primary and secondary widget areas.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?>
<?php do_shortcode(“[fb_login size=’medium’ login_text=’Logout’ logout_text=’Logout’ connect_text=’Connect to Facebook’]]”); ?>
<?php
/* When we call the dynamic_sidebar() function, it’ll spit out
* the widgets for that widget area. If it instead returns false,
* then the sidebar simply doesn’t exist, so we’ll hard-code in
* some default sidebar stuff just in case.
*/
if ( ! dynamic_sidebar( ‘primary-widget-area’ ) ) : ?>
<!– #primary .widget-area –>
<?php endif; // end primary widget area ?>
<iframe src=”https://www.facebook.com/plugins/recommendations.php?site=www.herbalmd.com&width=300&height=300&header=true&colorscheme=light” scrolling=”no” frameborder=”0″ style=”border:none; overflow:hidden; width:300px; height:300px;” allowTransparency=”true”></iframe>
<?php
// A second sidebar for widgets, just because.
if ( is_active_sidebar( ‘secondary-widget-area’ ) ) : ?>
<?php dynamic_sidebar( ‘secondary-widget-area’ ); ?>
<!– #secondary .widget-area –>
<?php endif; ?>