Tagged: author name
Hello,
Is there a way to simply move the author and date byline form the bottom of a post to the top of a post?
Thank you.
Hey targetzero,
Yes, you can edit the single.php file and move those.
If you do not know how, please upload a child theme, and send us after Admin details together with a screenshot of where u want to position them!
Best regards,
Basilis
Hi targetzero,
Please refer to a solution posted here
https://kriesi.at/support/topic/move-date-and-author-meta-to-under-title/
If you need further assistance please let us know.
Best regards,
Victoria
I did look at that thread and tried those options, but no luck. Are there any other solutions to get the name and date to the top of a post?
Thanks.
Hi targetzero,
Here is the code you can put in your funtions.php
function move_postmeta(){
?>
<script>
jQuery(window).load(function(){
jQuery( ".single.single-post .post-meta-infos" ).insertAfter('.big-preview.single-big' );
}());
</script>
<?php
}
add_action('wp_footer', 'move_postmeta');
If you need further assistance please let us know.
Best regards,
Victoria