Customizr code snippets

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 Footer Widget Area

The default Footer area can be easily modified – see Snippet. I prefer to add to the default Footer with […]

@media queries Responsiveness

A complexity for newbies to understand is that of ‘Responsiveness’. As the www has continued to develop, the devices that […]

Add content below slider

Add this function in your child theme’s functions.php add_filter(‘tc_slider_display’, ‘content_after_slider’); function content_after_slider($html) { $after_slider = ”; //Put your HTML inside […]

Adding Google Analytics to Customizr

For Customizr-Pro and Hueman-Pro users: You can paste your Google Analytics tracking code in a specific field designed for that. […]

Change Slider to Fader

One of the striking things with Customizr is the Front Page – the Header/Slider/Featured Pages items appearing by default. @ElectricFeet […]

Remove Post Meta Details

Customizr introduced built-in feature changes in v3.3. For more details, read the Documentation This Snippet is preserved for Users of […]