Archived topic
Meta below featured image - but now additionally shown on homepage ?
3 replies · Started by Jasmina on December 8, 2020
Hi there,
I have already searched the forum to display the meta information under the featured image. That worked with this instruction: https://generatepress.com/forums/topic/moving-post-meta-date-updated-below-featured-image-is-not-working-after-3-0/
But now the meta information also appear on the homepage and on all other pages. How can I turn this off?
for example: https://konfettiundtaler.de/
thanks for your help
kind regards
jasmina
Hi there,
try this code instead:
add_action( 'wp', function() {
if (is_single()) {
remove_action( 'generate_after_entry_title', 'generate_post_meta' );
add_action( 'generate_after_entry_header', 'generate_post_meta', 15 );
}
} );
Thanks a lot, David! Works fine ! :-) Great & fast support !
Glad to be of help!