adamlawler
Member
Posted 2 years ago #
Hi everyone
I'm building my blog slowly here, running it locally.
I've used a template called eDegree° 1.1 but I'm trying to figure out how to remove certain items from the sidebar (Blogroll and Meta) in this image
http://img408.imageshack.us/img408/5493/66090649.jpg
Moving Meta around in the Widgets section of my admin site does nothing. (Blogroll doesn't appear to be a widget).
When I tried to remove all reference to Meta in the sidebar.css, I got a message saying "The requested theme does not exist"
Any ideas of how to remove these annoying sections?
Thanks
look in theme's sidebar.php for code to remove
adamlawler
Member
Posted 2 years ago #
WHen I said I looked in sidebar.css, of course I meant .php
I can't remove it. Any ideas?
ankamsarav
Member
Posted 1 year ago #
Remove these lines from your sidebar.php
<li><h2>Meta</h2>
<ul>
<li><?php wp_register('', ''); ?></li>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>">Entries RSS</a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>">Comments RSS</a></li>
<li><a href="http://wordpress.org/">WordPress.org</a></li>
</ul>
</li>
<li><h2>Blogroll</h2>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
</ul>
</li>
for more instruction click here