Hi,
How can I move the Author and Date to under the title on the blog post?
Example in the private content.
Thanks!
Hey MikeTandySwag,
Thank you for your patience and the link to your site, try adding this code to the end of your functions.php file in Appearance ▸ Editor:
function custom_script() { ?>
<script>
(function($){
$( '.post-entry' ).each(function() {
$( this ).find( '.post-meta-infos:first' ).css({'margin-top': '0'}).insertAfter( $(this).find('.post-title.entry-title'));
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_script');
Best regards,
Mike
Hi,
No worries!
Unfortunately that didn’t work