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_body
3 posts
If you need to remove date, authors and tags, categories buttons below the post titles, here are two useful code snippet Where to copy/paste this code? This php code requires you to use a Child Theme. Everything you need to know about creating a child theme with Customizr here. 1) […]
Updated March 2015: This snippet now works only with Customizr > 3.3.1 and Customizr-Pro > 1.0.12 This little snippet gives a simple solution to display the post metas at the bottom of a single post in the Customizr theme, (instead of right below the post title). This code has to […]