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 […]
Target: Post metas
If your home page displays your last WordPress posts, you may have noticed that the posts on home don”t show the metas informations : dates, categories, tags, authors. This is the default behaviour of Customiz, but you might want to change this behaviour, for example to enable the Google author […]
This snippet replaces the default published date by the last post update’s date in your post metas. add_filter( ‘tc_date_meta’ , ‘display_the_update_date’); function display_the_update_date() { return sprintf( ‘<a href=”%1$s” title=”updated %2$s” rel=”bookmark”><time class=”entry-date” datetime=”%3$s”>%4$s</time></a>’ , esc_url( get_day_link( get_the_time( ‘Y’ ), get_the_time( ‘m’ ), get_the_time( ‘d’ ) ) ), esc_attr( get_the_modified_date(‘F j, […]
Did you ever wanted to distinguish your newest post in front of the other posts in the list ? This snippet will allow you to make your latest post look different (in any category) and to dinstinct itself from the rest. Where to copy/paste this code? The best way to customize […]
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 […]
Customizr introduced built-in feature changes in v3.3. For more details, read the Documentation This Snippet is preserved for Users of 3.1/3.2 If you need to remove any or all of the items around a Post (Category, Date, Author), this can be partially achieved with CSS. To remove the extra text […]