If you want to have the post metas of your single posts displayed before the title and not after the title, add this little bit of code to your child theme’s functions.php add_action (‘__before_body’ , ‘move_single_post_metas’); function move_single_post_metas() { //checks if we are displaying a single post. Returns false […]
Hook: __before_content_title
1 post