Quote:
Originally Posted by WeirdHomer
The search box is back....
Now, when you doubly click the "z" then the text above the search box lights up so i think you got one BR code that is open
|
Trying something... taking the GET POST QUERY out and replacing with a simpler piece of code.
One sec.
SIDEBAR BACKUP
Code:
<div id="sidebar-wrapper">
<div id="sidebar">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar() ) : ?>
<center>
<h3>Danny's Reviews</h3>
<form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" /><input type="submit" id="sidebarsubmit" value="Search" />
</form>
<br>
</center>
<?php
$today = current_time('mysql', 1);
if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_date_gmt < '$today' ORDER BY post_date DESC LIMIT 100")):
?>
<br>
<div class="sideblock">
<h3><?php _e("Recent Posts"); ?></h3>
<?php query_posts('showposts=70'); ?>
<ul class="list-rec">
<?php while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a><br />
</li>
<?php endwhile;?>
</ul>
</div>
<?php endif; ?>
<?php if (function_exists('wp_theme_switcher')) { ?>
<div class="sideblock">
<h3>Themes</h3>
<?php wp_theme_switcher('dropdown'); ?>
</div>
<?php } ?>
<div class="sideblock">
<h3>Categories</h3>
<ul>
<?php wp_list_cats('sort_column=name&hierarchical=0'); ?>
</ul>
</div>
<div class="sideblock">
<h3>Blog Directories</h3>
<ul>
<li><a href="http://www.adultblogspider.com/bit-of-everything/" title="Adult All Blog Directory">Adult Blog Spider</a></li>
<li><a href="http://www.adultblogturtle.com/bit-of-everything/" title="Adult All Blog Turtle">Adult Blog Turtle</a></li>
<li><a href="http://www.pornblogdog.com/bit-of-everything/" title="Porn All Blog Dog">Porn Blog Dog</a></li>
<li><a href="http://www.pornblogworld.com/bit-of-everything/" title="Porn All Blog World, where porn blogs rule">Porn Blog World</a></li>
<li><a href="http://www.sexblogdump.com/bit-of-everything/" title="Sex All Blog Dump, a big list with sex and adult blogs">Sex Blog Dump</a></li>
<li><a href="http://www.sexblogzilla.com/bit-of-everything/" title="Sex All Blog Zilla is eating sex blogs for diner">Sex Blog Zilla</a></li>
<li><a href="http://www.silveradultblogs.com/bit-of-everything/" title="Silver Adult All Blogs">Silver Adult Blogs</a></li>
<li><a href="http://www.goldadultblogs.com/bit-of-everything/" title="Gold Adult All Blogs">Gold Adult Blogs</a></li>
</ul>
<ul>
<li><a href="http://www.xxxblogfinder.com/solo-girls/">Solo Girl XXX Blogs</a></li>
<li><a href="http://www.hotblogguide.com/">Hot Blog Guide</a></li>
<li><a href="http://www.adultblogsindex.com/solo-girls/">Solo Girl Adult Blogs</a></li>
<li><a href="http://www.hornyblogspy.com/">Horny Blog Spy</a></li>
<li><a href="http://www.pussyblogspimp.com/">Pussy Blogs Pimp</a></li>
<li><a href="http://hotpornblogs.com">Porn Blogs</a></li>
<li><a href='http://www.adultbloglinks.com/cgi-bin/links/in.cgi?id=7462' target='_blank'>Adult Blog Links</a></li>
<li><a href="http://worldsporn.com/">Adult Porn</a></li>
<li><a href="http://www.allsexblogs.com/">All Sex Blogs</a></li>
<li><a href="http://www.adultblogindex.com/">Adult Blog Index</a></li>
<li><a href="http://all-adult-blogs.com/">Adult Blogs</a></li>
</ul>
</div>
<div class="sideblock">
<h3>Archives</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="sideblock">
<h3><?php _e('Blogroll'); ?></h3>
<ul>
<li><a href="http://youngnudes.org/" title="Young Nudes">Young Nudes</a></li>
<li><a href="http://pornsites69.com/" title="Porn Sites">Porn Sites</a></li>
<?php get_links(-1, '<li>', '</li>', '', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?>
</ul>
</div>
<div class="sideblock">
<h3><?php _e('Meta:'); ?></h3>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
<?php wp_meta(); ?>
</ul>
</div>
<?php endif; ?>
</div>
</div>
</div>