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 😀 !
Customizing the slider navigation arrows
The following is a simple snippet which describes how to replace the sliders default navigation arrows with icons. The method detailed […]
Stop slider pausing
Here’s a quick snippet to stop your slider pausing when you hover your mouse over it.
Disable the reveal hover effect on images in Customizr
The Customizr theme comes out of the box with a reveal effect when hovering the images of the featured pages and the […]
Display both logo and title in header
Here’s a quick snippet to display both your logo and your site title in the header. add_action( ‘__after_logo’ , […]
Change size/color of the Post/Page Icon & Title
Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. […]
Check if we are currently using the WordPress customizer
Howdy developer! Sometimes it might be the case that you need to execute actions only if the user is in […]
Remove the Post Icon/Category Archives header
Since Customizr 3.2, this feature has been built into the Customise Global Settings. See the Customizr Documentation. Where to copy/paste […]
Setting image title (or alt attributes) as the Fancybox pop-in title
Hi! In Customizr (version less than 3.10), the title displayed at the bottom of the Fancybox popin is the post […]
Change the color of the Sidebar background
Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. […]
Remove the ‘breadcrumb’ at top of pages
To aid navigation, you can use a ‘breadcrumb’ at the top of pages. However, if you need to remove the […]