Hi,
I would like to move the date, comments, author just above the title on blog entry page (article).For example – this page
How to move the date above the article title – like in this preview:
Regards
Hey L,
Thank you for using Enfold.
Please try this code in the functions.php file.
// custom script
add_action( 'wp_footer', 'ava_custom_script' );
function ava_custom_script() {
?>
<script type="text/javascript">
(function($) {
$('.post-meta-infos').insertBefore('.post-title');
})(jQuery);
</script>
<?php
}
Don’t forget to remove the browser cache before checking the page.
Best regards,
Ismael