/    Sign up×
Community /Pin to ProfileBookmark

How do I combine more than one wordpress sidebar widget into ONE??!!

Hello…

I have a wordpress based blog that I am working on right now.

I am using the Aspire theme, and I would like to take the sidebar widgets and combine them all into one long one…

if you take a look at this site:
david.rojasfam.com

you will see how there are several widgets in their own little “scrolls”.
I want to make it so that there is only ONE long scroll with each “category” of widgets inside that…

here is my php:

[code]
<div id=”sidebars”>
<div id=”sidebar-left”>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(1) ) : ?>

<?php if ( is_404() || is_category() || is_day() || is_month() ||
is_year() || is_search() || is_paged() ) {
?>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<ul>
<li><?php wp_votd(); ?></li>
<li><?php wp_votd(); ?></li>

<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
<p>You are currently browsing the archives for the <?php single_cat_title(”); ?> category.</p>

<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
<p>You are currently browsing the <a href=”<?php bloginfo(‘url’); ?>/”><?php echo bloginfo(‘name’); ?></a> blog archives
for the day <?php the_time(‘l, F jS, Y’); ?>.</p>

<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the <a href=”<?php bloginfo(‘url’); ?>/”><?php echo bloginfo(‘name’); ?></a> blog archives
for <?php the_time(‘F, Y’); ?>.</p>

<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p>You are currently browsing the <a href=”<?php bloginfo(‘url’); ?>/”><?php echo bloginfo(‘name’); ?></a> blog archives
for the year <?php the_time(‘Y’); ?>.</p>

<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
<p>You have searched the <a href=”<?php echo bloginfo(‘url’); ?>/”><?php echo bloginfo(‘name’); ?></a> blog archives
for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>

<?php /* If this is a monthly archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<p>You are currently browsing the <a href=”<?php echo bloginfo(‘url’); ?>/”><?php echo bloginfo(‘name’); ?></a> blog archives.</p>

<?php } ?>

</li>
</ul>
</div></div></div></div>
</div></div></div></div>
<?php }?>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Categories</h2>
<ul>
<?php wp_list_categories(‘show_count=0&title_li=0&hierarchical=0&order=ASC’); ?>
</ul>
</div></div></div></div>
</div></div></div></div>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Recent Posts</h2>
<?php query_posts(‘showposts=6’); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><span>[<?php the_time(‘j.n.Y’) ?>]</span>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
</ul>
</div></div></div></div>
</div></div></div></div>
<?php if (function_exists(‘src_simple_recent_comments’)) { ?>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Recent comments</h2>

<?php src_simple_recent_comments(4,60,”, ”); ?>

</div></div></div></div>
</div></div></div></div>
<?php } ?>
<?php endif; ?>
</div>
<div id=”sidebar-right”>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(2) ) : ?>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Pages</h2>
<ul>
<?php wp_list_pages(‘title_li=’); ?>
</ul>
</div></div></div></div>
</div></div></div></div>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Archives</h2>
<ul>
<?php wp_get_archives(‘type=monthly’); ?>
</ul>
</div></div></div></div>
</div></div></div></div>
<?php if ( is_home() || is_page() ) { ?>
<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Links</h2>
<ul>
<?php get_links(‘-1’, ‘<li>’, ‘</li>’, ”, FALSE, ‘id’, FALSE, FALSE, -1, FALSE); ?>
</ul>
</div></div></div></div>
</div></div></div></div>
<?php } ?>

<div class=”sb-bot”><div class=”sb-top”><div class=”sb-right”><div class=”sb-left”>
<div class=”sb-rb”><div class=”sb-lb”><div class=”sb-rt”><div class=”sb-lt”>
<h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href=”http://validator.w3.org/check/referer” title=”This page validates as XHTML 1.0 Transitional”>Valid <abbr title=”eXtensible HyperText Markup Language”>XHTML</abbr></a></li>
<li><a href=”http://gmpg.org/xfn/”><abbr title=”XHTML Friends Network”>XFN</abbr></a></li>
<li><a href=”http://wordpress.org/” title=”Powered by WordPress, state-of-the-art semantic personal publishing platform.”>WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</div></div></div></div>
</div></div></div></div>
<?php endif; ?>
</div>
<div class=”clear”></div>
</div>
[/code]

PLEASE HELP!!!

thanks!

ShireStudios

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@JickMay 05.2008 — Maybe something like this?[CODE]<div id="sidebars">
<div id="sidebar-left">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) { ?>
<div class="sb-bot"><div class="sb-top"><div class="sb-right"><div class="sb-left"><div class="sb-rb"><div class="sb-lb"><div class="sb-rt"><div class="sb-lt">
<?php if ( is_404() || is_category() || is_day() || is_month() || is_year() || is_search() || is_paged() ) { ?>
<ul>
<li><?php wp_votd(); ?></li>
<li><?php wp_votd(); ?></li>
<li>
<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
<p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p>

<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives
for the day <?php the_time('l, F jS, Y'); ?>.</p>

<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives
for <?php the_time('F, Y'); ?>.</p>

<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives
for the year <?php the_time('Y'); ?>.</p>

<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
<p>You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives
for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>

<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<p>You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives.</p><?php } ?>
</li>
</ul>
<?php } ?>

<h2>Categories</h2>
<ul>
<?php wp_list_categories('show_count=0&title_li=0&hierarchical=0&order=ASC'); ?>
</ul>

<h2>Recent Posts</h2>
<?php query_posts('showposts=6'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><span>[<?php the_time('j.n.Y') ?>]</span>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
</ul>

<?php if (function_exists('src_simple_recent_comments')) { ?>
<h2>Recent comments</h2>
<?php src_simple_recent_comments(4,60,'', '');
} ?>

<h2>Pages</h2>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>

<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>

<?php if ( is_home() || is_page() ) { ?>
<h2>Links</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '', FALSE, 'id', FALSE, FALSE, -1, FALSE); ?>
</ul>
<?php } ?>

<h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</div></div></div></div></div></div></div></div>
<?php } ?>
</div>
<div class="clear"></div>
</div>[/CODE]
Copy linkTweet thisAlerts:
@shirestudiosauthorMay 15.2008 — I am SOOOOO SOOORRYYY....

I forgot about you and failed to give you credit!

YES...you got that code right!

Thank you so much!
×

Success!

Help @shirestudios spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...