Q: How Do I Remove The Featured Images From Posts?
Make sure you’re using a child theme Add the following code to your child theme’s `functions.php`: function lbc_remove_postimage(){ remove_action( ‘lblg_before_itemtext’, ‘lblg_the_postimage’ ); } add_action( ‘init’, ‘lbc_remove_postimage’ ); Reload the page and check to make sure it worked.