• The title of my blog is in the header image, so how can I remove the title from the top, outside of making the title blank?t

Viewing 5 replies - 1 through 5 (of 5 total)
  • If you are using the default theme, open header.php and near the bottom delete the following two lines:

    
    <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
    <div class="description"><?php bloginfo('description'); ?></div>
    

    Steve

    Thread Starter katori

    (@katori)

    Thanks a lot. I’m not using the default theme, but that still worked. It’s not really a “blog” site–any way I can remove the “Blogroll” category?

    EDIT: Rephrasing. I’ve already removed all the blogroll links, any way I can remove the actual category, though?

    Edit your sidebar and comment out (or delete) the function that gets the links.

    For example:
    <?php get_links_list(); ?>

    Thread Starter katori

    (@katori)

    Is there any way to just remove the one category and keep the others?

    Sorry for the slow reply. I’m not aware of any easy way to remove just one category, but you can call the individual categories separately to display the ones you want (not ideal, I know).

    See this thread for more information

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing Title’ is closed to new replies.