Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #59614
    tinsonit
    Member

    I am using the Full Frame theme, love the theme.

    I have created a posts page but I want the page title to be displayed. Can you let me know how to do this.

    Regards

    Lorraine

    #59666
    Sakin
    Keymaster

    @tinsonit: Sorry I don’t get it what you mean. Title is automatically displayed in post and page. So, I am bit confused what you mean. Can you explain in reference with your site URL.

    #59686
    tinsonit
    Member

    Hi Sakin,

    So, on my posts page, the title of each POST is displayed against the relevant post. However, I want the actual page title to also be displayed i.e. What We’ve Done. See link here:

    http://tinsonit.com.au/what-weve-done

    First item on the page is the featured image for the first post. I would like to see the page title at the top.

    Thanks

    Lorraine

    #59725
    Sakin
    Keymaster

    @tinsonit: To change the featured image position in your blog. There is two options:
    1. Build child theme and edit content.php
    — First build child theme. For child theme you can check out http://catchthemes.com/blog/create-child-theme-wordpress/
    — Then copy content.php file in your child theme and then move the following code after </header><!-- .entry-header --> code.

    <?php 
    /** 
     * fullframe_before_entry_container hook
     *
     * @hooked fullframe_archive_content_image - 10
     */
    do_action( 'fullframe_before_entry_container' ); ?>

    2. You can change Archive Content Layout
    — Go to “Appearance => customize => Theme Options => Layout Options” and change “Archive Content Layout” to “Show Full Content (No Featured Image)”
    — This will show your full content without image. Then you can add image just at the top of your post content. Then you can split content using more tag <!--more-->. For more tags, check out http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/

    #59834
    tinsonit
    Member

    Hi Sakin,

    Thanks for your very comprehensive instructions, however, this is not what I’m looking for.

    My page is the posts page and whilst each post is listed with it’s relevant title, I want the overall PAGE to have a title i.e. What We’ve Done.

    How can I add a title to the page.

    Thanks

    Lorraine

    #59966
    Sakin
    Keymaster

    @tinsonit: Ok for that, you need to build child theme and then copy index.php file in your child theme and then add the following code just below the code: <main id="main" class="site-main" role="main">

    <?php if( is_home() && get_option('page_for_posts') ) : ?>
    	<header class="page-header">
    		<h1 class="page-title"><?php echo apply_filters('the_title',get_page( get_option('page_for_posts') )->post_title); ?></h1>
    	</header>
    <?php endif; ?>
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Add Title to Posts Page’ is closed to new replies.