• Resolved lmcarleton

    (@lmcarleton)


    Hi. I’m using the latest version of the Primer Theme by GoDaddy. I would like to change the placement of the Post Title, Post Meta, and Featured Image for all posts.

    The default order is;
    Feature Image
    Post Title
    Post Meta
    Content

    I would like the order to be;
    Post Title
    Post Meta
    Feature Image
    Content

    What is the best way to accomplish this goal?

    Thank You, Linda

Viewing 1 replies (of 1 total)
  • Thread Starter lmcarleton

    (@lmcarleton)

    I got it!

    To change the placement of the featured image to below the Post Title and Post Meta you need to edit the content.php page in the theme folder.

    Note; you should create a child theme and add your new content.php page to the child theme folder.

    How to Change the Feature Image Placement

    Open content.php in your editor and look for

    <?php get_template_part( 'templates/parts/loop/post', 'thumbnail' ); ?>

    for me, it was on line 31 in the editor. Now copy the code and remove it from here.

    Then scroll down to

    	<?php
    
    	/**
    	 * Fires after templates/parts/loop/post template
    	 *
    	 * @hooked primer_add_post_meta - 10
    	 *
    	 * @since 1.0.0
    	 */
    	do_action( 'primer_after_post_title_template' );
    
    	?>

    and paste the code you copied after this code. Save the changes and upload the child theme to your server.

    You will need to add space between the top of the featured image and the bottom of the post meta. To do this add the following CSS to your Aditional CSS rules in the Customizer.

    .entry-meta{
    	margin-bottom:30px;
    }

    Save the changes and your good to go. If you have a cache plugin activated you might need to delete the saved copies before the changes will display.

    Linda

    • This reply was modified 4 years, 6 months ago by lmcarleton.
    • This reply was modified 4 years, 6 months ago by lmcarleton.
    • This reply was modified 4 years, 6 months ago by lmcarleton.
Viewing 1 replies (of 1 total)
  • The topic ‘Post Title and Feature Image Placement’ is closed to new replies.