• 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

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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).

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    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.

    Thread Starter sandrosamba

    (@sandrosamba)

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    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>

    Thread Starter sandrosamba

    (@sandrosamba)

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how to get rid of the “blog” page, move it, or rename it’ is closed to new replies.