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 […]
Function: is_single()
3 posts
Hi, You might need to disable the built-in Customizr breadcrumb in some contexts of your website. You can easily unhook the breadcrumb actions by checking the post types, or using the WordPress built-in conditional tags. Use case : disabling the breadcrumb on the WooCommerce product pages All product pages […]
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 […]