Viewing 3 replies - 1 through 3 (of 3 total)
  • Go to admin panel

    1. From admin menu at left Go To “Pages -> Add New”. And Create Your home page with the name you like, for example “Home”.

    2. Go To “Appearance” and then Choose “Themes”.

    3. You will the active theme in the first place. Click on “Customize”.

    4. After that you will see options, Go to Front page display and click it.

    5. Choose “a static” page option, you will be presented the page list. Choose your page that you have created on step one.

    If you still are unable to do it. Just ask for help again, I will be happy to help you..

    Thread Starter servicekungen

    (@servicekungen)

    hi

    i try what you told me but it didnt work.

    Can i not change the text menu HOME at the front page easy?

    You can change it in your code file also. You should find it in

    /wp-content/themes/[YOUR_CURRENT_THEME]/index.php

    <?php
    /**
     * The main template file
     *
     * This is the most generic template file in a WordPress theme and one of the
     * two required files for a theme (the other being style.css).
     * It is used to display a page when nothing more specific matches a query.
     * For example, it puts together the home page when no home.php file exists.
     *
     * @link http://codex.wordpress.org/Template_Hierarchy
     *
     * @package WordPress
     * @subpackage Twenty_Thirteen
     * @since Twenty Thirteen 1.0
     */
    
    get_header(); ?>
    
    	<div id="primary" class="content-area">
    		<div id="content" class="site-content" role="main">
    		<?php if ( have_posts() ) : ?>
    
    			<?php /* The loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', get_post_format() ); ?>
    			<?php endwhile; ?>
    
    			<?php twentythirteen_paging_nav(); ?>
    
    		<?php else : ?>
    			<?php get_template_part( 'content', 'none' ); ?>
    		<?php endif; ?>
    
    		</div><!-- #content -->
    	</div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Just Replace this section with the content you like.

    <?php if ( have_posts() ) : ?>
      <?php /* The loop */ ?>
      <?php while ( have_posts() ) : the_post(); ?>
    	<?php get_template_part( 'content', get_post_format() ); ?>
      <?php endwhile; ?>
    <?php twentythirteen_paging_nav(); ?>
    <?php else : ?>
    	<?php get_template_part( 'content', 'none' ); ?>
    <?php endif; ?>

    You should see your changes.

    If you struggle with the look and feel of your content. You can tell me that on which step you stuck on the earlier solution I have suggested.

    The first option is recommended as it will allow you to edit using a standard editor.

    Tell me the version of wordpress you are using so that I can try my earlier suggested solution on the version you are working on..

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘home page’ is closed to new replies.