Support » Fixing WordPress » Remove Blogroll? Please help!

  • Hi. My blog is benbelack.com/blog Theme is imprezz

    I have searched up and down the header, function, and style files…and I can’t seem to figure out how to remove the blogroll.

    I’m kind of a newb, but I’m a fast learner.

    Some help here would be greatly appreciated!

    Thanks in advance!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bbelack

    (@bbelack)

    Here is the code of my sidebar, from the sidebar.php file.

    <div id="sidebar">
    	<h1 class="logo"><a href="http://benbelack.com"><?php bloginfo('name'); ?></a></h1>
    
    		    <div class="searchfield"><span>SEARCH</span>
        <?php include (TEMPLATEPATH . '/searchform.php'); ?>
        </div>
    
    		<ul>
    			<?php 	/* Widgetized sidebar, if you have the plugin installed. */
    					if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
    
    			<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
    			<li><h2>Author</h2>
    			<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
    			</li>
    			-->
    
    			<?php if ( is_404() || is_category() || is_day() || is_month() ||
    						is_year() || is_search() || is_paged() ) {
    			?>  <?php }?>
    
    			<li><h2>Archives</h2>
    				<ul>
    				<?php wp_get_archives('type=monthly'); ?>
    				</ul>
    			</li>
    
    			<?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
    
    			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
    				<?php wp_list_bookmarks(); ?>
    
    				<li><h2>Meta</h2>
    				<ul>
    					<?php wp_register(); ?>
    					<li><?php wp_loginout(); ?></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>
    				</li>
    			<?php } ?>
    
    			<?php endif; ?>
    		</ul>
    	</div>

    Thread Starter bbelack

    (@bbelack)

    I’m able to edit the other categories within the bar, but I can’t find which is blogroll. Please help. Thanks.

    According to firebug, this is in your main page, listed as “linkcat 2”:

    <li class="categories">
    </li>
    <li id="linkcat-2" class="linkcat">
    <h2>Blogroll</h2>
    <ul class="xoxo blogroll">
    </ul>
    </li>
    Thread Starter bbelack

    (@bbelack)

    index.php?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Blogroll? Please help!’ is closed to new replies.