I would like my featured images to show below the title and meta info on single post pages like this one: https://www.amdi.net/knock-knock-candy/
I tried the css in this post but it didn’t work for me.
I would like my featured images to show below the title and meta info on single post pages like this one: https://www.amdi.net/knock-knock-candy/
I tried the css in this post but it didn’t work for me.
Hello @kvpadmin,
Thanks for writing in!
Do you want something like this?

Since you have your child theme active and ready, please follow these steps below:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file
<?php
// =============================================================================
// VIEWS/INTEGRITY/CONTENT.PHP
// -----------------------------------------------------------------------------
// Standard post output for Integrity.
// =============================================================================
?>
<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>
3] Save the file named as content.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/pro-child/framework/views/integrity/
You will need to create the folder path since it does not exist in your Pro child theme yet.
Awesome, thanks!!
You are most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.