Quote:
Originally Posted by Lifer
Also, copy the sidebar code and post it here. Maybe there is something there where you are trying to pull information from one place, but in fact are pulling it from another. This would be the lines like <?php _e('Meta'); ?> where _e('META') is the controlling factor.
Make sure that your sidebar code is getting the information from the right place
|
sidebar code:
Code:
<div id="sidebar">
<ul>
<!-- List of Links in Blog -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-babes.gif" width="188" height="35" alt="Links" /></td>
</tr>
<tr>
<td class="sidebg">
<ul>
<?php wp_get_links(4); ?>
</ul>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
<!-- List of Categories in Blog -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-categories.gif" width="188" height="35" alt="Categories" /></td>
</tr>
<tr>
<td class="sidebg">
<ul>
<?php list_cats(1, 'all', 'name', 'asc', '', 1, 0, 0, 1, 0, 1, 0,'','','','','') ?>
</ul>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
<!-- List of Pages in Blog -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-otherpages.gif" width="188" height="35" alt="Other Pages" /></td>
</tr>
<tr>
<td class="sidebg">
<ul>
<?php wp_list_pages('title_li=' ); ?>
</ul>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
</ul>
</div>
<div id="sidebar2">
<ul>
<!-- Previous Posts -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-previous.gif" width="188" height="35" alt="Links" /></td>
</tr>
<tr>
<td class="sidebg">
<ul>
<?php
$posts = get_posts('numberposts=10&offset=0');
foreach ($posts as $post) :
?>
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title() ?>"><?php the_title() ?></a>
</li>
<?php
endforeach;
?>
</ul>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
<!-- End Previous Posts -->
<!-- Search Box -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-find.gif" width="188" height="35" alt="Find" /></td>
</tr>
<tr>
<td class="sidebg" align="center">
<form method="get" action="<?php echo $PHP_SELF; ?>">
<input type="text" name="s" id="search" size="15" />
<input type="submit" name="submit" value="<?php _e('Search'); ?>" />
</form>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
<!-- List of Links in Blog -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-links.gif" width="188" height="35" alt="Links" /></td>
</tr>
<tr>
<td class="sidebg">
<ul>
<?php wp_get_links(2); ?>
</ul>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
<!-- Admin Links -->
<li><table width="188" cellpadding="0" cellspacing="0">
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/side-meta.gif" width="188" height="35" alt="Meta" /></td>
</tr>
<tr>
<td class="sidebg">
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS 2.0'); ?>"><?php _e('Entries <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="RSS Feed">RSS</abbr>'); ?></a></li>
<?php wp_meta(); ?>
</ul>
</td>
</tr>
<tr>
<td><img src="<?php bloginfo('stylesheet_directory'); ?>/images/sidefoot.gif" width="188" height="13" alt="" /></td>
</tr>
</table></li>
</ul>
</div>