I always moved the meta (date last updated on) to Below the featured image using this recommended code in child Functions:
add_action( ‘after_setup_theme’, function() {
remove_action( ‘generate_after_entry_title’, ‘generate_post_meta’ );
add_action( ‘generate_after_entry_header’, ‘generate_post_meta’, 15 );
} );
But since updating to 3.0 this shows 2 dates – 1 above and 1 below the featured image
i.e. the add_action works fine but the remove_action no longer removes the meta from above the featured image…
Happens using flexbox or floats. Any ideas – does the generate_after_entry_title need changing to something new?
Thanks