The Customizr WordPress theme is entirely built on an extensible WordPress filter and action hooks API, which makes customizations safe and easy, without ever needing to modify the core structure. To some extents, the theme’s code acts like a collection of plugins that can be enabled, disabled or extended.
The following snippets can really help beginners and advanced developers to extend the Customizr core code and create any kind of websites. You’ll find snippets in the following web coding languages : CSS, HTML, Javascript, PHP.
If you are not familiar with the WordPress hooks API, I really recommend that you start with this quick and easy guide : WordPress Actions, Filters, and Hooks : A guide for non-developers.
Happy customizing 😀 !
Change the post title tag to h2
In the Customizr WordPress theme, you can easily change the default h1 html tag of the post or page title […]
Displaying the last post update’s date in the post metas
This snippet replaces the default published date by the last post update’s date in your post metas. add_filter( ‘tc_date_meta’ , […]
Adding an update status next to post titles in WordPress
This simple snippet adds an update status after your post title in WordPress. It checks if the post has been […]
Setting a custom external link url to a slide
Notice: Since Customizr v3.4.6 and Customizr-Pro 1.2.0 a new set of options has been introduced in the slides editing screen. […]
Linking the whole slide’s picture to a page/post in Customizr
Notice: Since Customizr v3.4.6 and Customizr-Pro 1.2.0 a new set of options has been introduced in the slides editing screen. […]
Changing the title of the categories archive pages
Customizr includes some useful filters if you need to customize your category archives titles. Changing the default prefix : […]
Add a widget area after the header
This snippet shows you how to add a widget area after the header. You can then use it for a […]
Changing the post navigation’s texts
The Customizr WordPress theme comes with default texts for navigation at the bottom of single posts and on post lists […]
Add qTranslateX flags to the menu: 2 quick and easy ways
Add qTranslateX flags to your menu. You need no child theme nor php knowledge.
Firebug: the best-spent 6 minutes.
Firebug helps you you work with CSS styling. Watch this 6-minute video.