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
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).
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.
sandrosamba
Member
Posted 3 years ago #
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>
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