How to put the featured image under the post title

Hey I want to know how to put the featured image under the post title, in the actual post ( not in the main page)

Hi,

We need to know which stack are you using.

You can copy the file wp-content/themes/x/framework/views/{STACK}/content.php
to your child theme wp-content/themes/x-child/framework/views/{STACK}/content.php

Then move <?php x_get_view( 'integrity', '_content', 'post-header' ); ?> on top of this

  <div class="entry-featured">
    <?php x_featured_image(); ?>
  </div>

For more information regarding this, kindly refer to the link below

Hope that helps

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