Forums

how to get rid of the "blog" page, move it, or rename it (6 posts)

  1. sandrosamba
    Member
    Posted 3 years ago #

    Hi, basically the title says what I need. I have 6 pages and one of this, the first one, the home one is the Blog. I would prefere to have a Home page instead of a blog one. Is it possible to move the Blog page, rename it? Is it possible to somehow manage it?
    thanks in advance for your help!
    ALEX

  2. drabina
    Member
    Posted 3 years ago #

    In settings you can point any static page to be your home page. Unfortunately, I haven't figure it out yet, how to move blog to another tab (page).

  3. This may be a part of your theme (I can't say for sure without looking at your page - a link would be nice).

    You may be able to rename the blog page.

  4. sandrosamba
    Member
    Posted 3 years ago #

  5. It's hard coded in your header.php.

    Change this:

    <ul id="navigation">
    	<li class="<?php if (!is_page()) echo "current_page_item" ?>"><a href="<?php bloginfo('url'); ?>">Blog</a></li>
    	<?php wp_list_pages('title_li='); ?>
    </ul>

    to this:

    <ul id="navigation">
    	<li class="<?php if (!is_page()) echo "current_page_item" ?>"><a href="<?php bloginfo('url'); ?>">Home</a></li>
    	<?php wp_list_pages('title_li='); ?>
    </ul>
  6. sandrosamba
    Member
    Posted 3 years ago #

    great, you are the man! I saw that you basically changed a word (blog--->Home) in the line! brilliant.
    I learn learn learn!
    Thanks

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.