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 be pasted in the functions.php of a child theme.
//we hook the code on the __before_body hook, which is executed before the <body> rendering. add_action ('__before_body' , 'move_single_post_metas'); function move_single_post_metas() { //checks if we are displaying a single post. Returns false if not. if ( ! is_single() ) return; //we remove the original action hooked on '__post_metas'. tc_post_metas action is a method of the TC_post_metas class //We can access the instance of this class with a static property of this class that is a self instance. remove_action ( '__after_content_title' , array( TC_post_metas::$instance , 'tc_set_post_metas_hooks' ), 20); //we add the tc_post_metas action on a the __after_loop (check index.php file to see where this hook is called in the code) add_action ('__after_article' , array( TC_post_metas::$instance , 'tc_set_post_metas_hooks'), 10); //Additional action to display an hr separator between content and metas. //We use the priority parameter to determine the rendering order of the action add_action ('__after_article' , 'display_hr', 0); //this is a nested function (function in another function), allowed with PHP. function display_hr() { ?> <hr/> <?php } }