Q: “How do I move the post meta information from the bottom to the top of each post?”

A:

  1. Make sure you’re using a child theme (see above).
  2. Edit your child theme’s functions.php
  3. Add this to the bottom of functions.php:


remove_action( 'lblg_after_itemtext', 'lblg_post_info' );
add_action( 'lblg_before_itemtext', 'lblg_post_info' );

Leave a Reply