Wordpress 2.2 - How can i remove the sidebar text blogroll

Discussion in 'HTML & Website Design' started by rhino56, Jun 13, 2007.

  1. #1
    i want to change it to "links" i cant find the file that contains it.:mad:

    on the site rhino56.com
     
    rhino56, Jun 13, 2007 IP
  2. Felu

    Felu Peon

    Messages:
    1,680
    Likes Received:
    124
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Felu, Jun 13, 2007 IP
  3. rhino56

    rhino56 Peon

    Messages:
    414
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <div id="sidebar">
    		<ul>
    			
    			<li><h2><?php _e('Feeds'); ?> <img src="<?php bloginfo('stylesheet_directory'); ?>/images/green-feed-icon.png" alt="feeds" /></h2>
    				<ul>
    				<li><a href="<?php bloginfo('rss2_url'); ?>">RSS 2</a></li>
    				<li><a href="<?php bloginfo('atom_url'); ?>">ATOM</a></li>
    				</ul>
    			</li>
    
    			<?php 
    			if (function_exists('g2_sidebarimageblock')) { ?>
    
    			<li><h2><?php _e('Random Image'); ?></h2><div class="g2-thumb"><?php print g2_sidebarimageblock(); ?></div></li>
    			<?php } ?>
    
    
    			<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
    			<li><h2><?php _e('Author'); ?></h2>
    			<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
    			</li>
    			-->
    
    			<li>
    			<?php /* If this is a category archive */ if (is_category()) { ?>
    			<p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p>
    			
    			<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
    			<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
    			for the day <?php the_time('l, F jS, Y'); ?>.</p>
    			
    			<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
    			<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
    			for <?php the_time('F, Y'); ?>.</p>
    
          <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
    			<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
    			for the year <?php the_time('Y'); ?>.</p>
    			
    		 <?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
    			<p>You have searched the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
    			for <strong>'<?php echo wp_specialchars($s); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>
    
    			<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
    			<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives.</p>
    
    			<?php } ?>
    			</li>
    
    			<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
    
    			<li><h2><?php _e('Archives'); ?></h2>
    				<ul>
    				<?php wp_get_archives('type=monthly'); ?>
    				</ul>
    			</li>
    
    			<li><h2><?php _e('Categories'); ?></h2>
    				<ul>
    				<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?>
    				</ul>
    			</li>
    
    			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>				
    				<?php get_links_list(); ?>
    				
    				<li><h2><?php _e('Meta'); ?></h2>
    				<ul>
    					<?php wp_register(); ?>
    					<li><?php wp_loginout(); ?></li>
    					
    					<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>">WordPress</a></li>
    					<?php wp_meta(); ?>
    				</ul>
    				</li>
    			<?php } ?>
    			
    		</ul>
    	
    	</div>
    
    
    Code (markup):

    al i find in that is

    <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>				
    				<?php get_links_list(); ?>
    Code (markup):
    where it should be.:confused:
     
    rhino56, Jun 13, 2007 IP
  4. SpringCypress

    SpringCypress Well-Known Member

    Messages:
    316
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    108
    #4
    in the admin side of your wp site

    click on the categories tab
    then click on the edit tab beside blogroll (should be id #2)
    change the category name
    click the edit category button.
     
    SpringCypress, Jun 13, 2007 IP
  5. rhino56

    rhino56 Peon

    Messages:
    414
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #5
    OMG>>>>>>> i have been looking thru pages of code all morning trying to find it. wow what an oversite.

    thanks man, i would have never found it in such an obvious spot lol
     
    rhino56, Jun 13, 2007 IP