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 😀 !
Displaying the image descriptions on attachment page
The following code will display the description text field of any attachment at the bottom of the attachment page. Copy […]
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 […]
Add content above featured pages
Method 1 : with an action hook This will add a two column block before your featured pages on home. […]
Adding a logo in the footer credits
Notice for Customiz-Pro (<1.2.5) users: In order to use this code you have to uncheck Enable the footer copyrights and […]
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 […]
Menu: Hover dropdowns + parent links + mobile friendly
Hi, the following pieces of code change the default behaviour of the Customizr theme menu : 1 displays the dropdown […]
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 […]