Hello, I would like to change the default tabs in my MooTabs sidebar widget to display iframes. Any help/advice is greatly appreciated. Below is the MooTabs code from sidebar.php:
<div id="myTabs1" class="sideTabs">
<ul class="mootabs_title">
<li title="pop"><span>Popular</span>
<li title="feat"><span>Latest</span>
<li title="comm"><span>Comments</span>
<?php if (function_exists('wp_tag_cloud')) { ?><li title="tagcloud"><span>Tags</span><?php } ?>
<li title="sub"><span>Subscribe</span>
<div class="mootabs_panel" id="pop">
<ul class="list1">
<?php include(TEMPLATEPATH . '/includes/popular.php' ); ?>
</div>
<div id="feat" class="mootabs_panel">
<ul class="list2">
<?php
include(TEMPLATEPATH . '/includes/version.php');
$the_query = new WP_Query('cat=' . $ex_feat . '&showposts=10&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID;
?>
<?php endwhile; ?>
</div>
<div class="mootabs_panel" id="comm">
<ul class="list3">
<?php include(TEMPLATEPATH . '/includes/comments.php' ); ?>
</div>
<?php if (function_exists('wp_tag_cloud')) { ?>
<div class="mootabs_panel" id="tagcloud">
<?php wp_tag_cloud('smallest=10&largest=18'); ?>
</div>
<?php } ?>
<div class="mootabs_panel" id="sub">
<ul id="rss">
</div>
</div>
<div class="fix" style="height:15px !important;"></div>