Forums

[resolved] How can I change tiltle of "Home" page? (5 posts)

  1. maxmanus
    Member
    Posted 1 year ago #

    I have a start page which is, by default, named "Home".
    I want to change the title of that page, but I can't see it in "pages" section in administration section. Any solution?
    Thanks.

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    theme?

  3. maxmanus
    Member
    Posted 1 year ago #

    cover-wp

  4. alchymyth
    The Sweeper
    Posted 1 year ago #

    try in functions.php of the theme (a few lines from the end):

    function mytheme_nav_fallback() { ?>
        <ul id="menu">
          <li<?php if(is_home()) echo ' class="current_page_item"'; ?>><a href="<?php echo home_url(); ?>/">Home</a></li>
          <?php wp_list_pages('sort_column=menu_order&title_li='); ?>
        </ul><!-- /menu --><?php
    }

    change Home in there

  5. maxmanus
    Member
    Posted 1 year ago #

    It works, thanks!
    Before I close this, do you, maybe, know something about
    GD Star Rating plugin?
    It has support for my language, but I don't know how to change it...

Topic Closed

This topic has been closed to new replies.

About this Topic