I’ve got a sidebar.php, a r_sidebar.php, and a l_sidebar.php (see code below). I did a search in all and could not find “meta” in any. Code below. I put my meta (Login) in my sidebar2 which is on the right side (www.frankfactor.net). I want to keep the Login function but remove Entries RSS/Comments RSS/www.remarpro.com.
<?php include(TEMPLATEPATH.”/config.inc.php”); ?>
<!–sidebar.php–>
<div id=”sidebar”>
<div class=”ads”>
<?php include(TEMPLATEPATH.”/ad.php”); //include the ad unit ?>
</div>
<div id=”sidebarwrap”>
<div id=”popular”>
-
<h2>Popular Articles</h2>
<?php $my_query = “cat=” . $db_pop_cat . “&showposts=5”; $my_query = new WP_Query($my_query); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
- “><?php the_title(); ?>
<?php endwhile; ?>
<div id=”popular-bottom”></div>
</div>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
<div class=”sidebar-bot”></div>
</div>
</div>
<!–sidebar.php end–>
<!–l_sidebar.php–>
<div id=”l_sidebar”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(1) ) : else : ?>
<!–recent posts–>
-
<h2>Recent Posts</h2>
<?php get_archives(‘postbypost’, 10); ?>
<!–list of categories, order by name, without children categories, no number of articles per category–>
<?php wp_list_categories(‘orderby=name&title_li’); ?>
<?php endif; ?>
</div>
<!–l_sidebar.php end–>
<!–r_sidebar.php–>
<div id=”r_sidebar”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(2) ) : else : ?>
<!–recent posts–>
-
<h2>Archives</h2>
<?php wp_get_archives(‘type=monthly’); ?>
<!–Blogroll–>
<?php get_links(-1, ‘
- ‘, ‘
‘, ‘ – ‘); ?>
<!– Categories –>
<?php wp_list_categories(‘orderby=name&title_li’); ?>
<?php endif; ?>
</div>
<!–r_sidebar.php end–>