Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.
How do I remove the meta stuff on the Content pages?
E.g. Remove date and Author and Created in at the bottom of a post?
See here an example: http://weydelandkaas.nl/nieuws/
You can simply remove it with this code inside functions.php file of your child theme:
remove_action( 'bizznis_entry_footer', 'bizznis_post_meta' );
All the post functions are located inside lib/frontend/post.php file if you want to explore more.
Great. Thanks. Really really easy. Played around with it and working fine now.
You must be logged in to reply to this topic.