Featured image below the blog title instead of above

Is it possible to get the featured image below the blog title instead of above (on the individual posts)?

http://faithlead.luthersem.edu/faithlead-blog/

Thanks!

Hello Paper+Screen,

Thanks for writing in!

I can see that you are using The Grid plugin in displaying the post items. You will need to edit the grid skin so that you can swap the titles and the feature image. Or you can simply change the skin to Panama just like this:

To know how to edit the grid skin, please check this out:

We are fine editing the grid but I was asking about the individual blog posts… the actual blogs themselves not the collective page or the skins. So for example, we’d like this link http://faithlead.luthersem.edu/a-new-digital-home/ to have the title on top and then the image (I know there are double images right now but we’ll fix that.)

Hi @INcroatia,

Thank you for the clarification. Your site is not loading thus I can’t see the stack you were using. This will include template customization.
Let say for example you’re using integrity. Look for this file:
\wp-content\themes\pro\framework\views\integrity\content.php
Copy it on the same folder on your child theme here:
\wp-content\themes\pro-child\framework\views\integrity\content.php
Open the copied file. The title is on this line 16:
<?php x_get_view( 'integrity', '_content', 'post-header' ); ?>
Move that line above this
<div class="entry-featured">
Like this:

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  <?php x_get_view( 'integrity', '_content', 'post-header' ); ?>
  <div class="entry-featured">
    <?php x_featured_image(); ?>
  </div>
  <div class="entry-wrap">
    <?php x_get_view( 'global', '_content' ); ?>
  </div>
  <?php x_get_view( 'integrity', '_content', 'post-footer' ); ?>
</article>

That line of code for the header is calling this file:
\wp-content\themes\pro\framework\views\integrity\_content-post-header.php

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.