Skip Navigation

[Resolved] Move featured image below publish date/title

This support ticket is created 4 years, 6 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 1 reply, has 2 voices.

Last updated by Luo Yang 4 years, 6 months ago.

Assisted by: Luo Yang.

Author
Posts
#1956691
Screen Shot 2021-02-18 at 9.48.52 AM.png

Tell us what you are trying to do?
Change display order on blog post pages. I'd like to move the publish date/title lines below the featured image, so once visitors click on a blog post the first thing they see is the title and the publish date (not the featured image).
Is there any documentation that you are following?

Is there a similar example that we can see? see attached screenshot

What is the link to your site? hidden link

#1957535

Hello,

It depends on your theme file, for example, with WordPress default theme 2021, it is defined in file \twentytwentyone\template-parts\content\content-single.php, line 16~19:

	<header class="entry-header alignwide">
		<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
		<?php twenty_twenty_one_post_thumbnail(); ?>
	</header>

You can locate the featured image PHP codes of your theme files, and move them to where you want.