Hook: Customizr Hooks

82 posts

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 updated since its creation and if this update is less than n days old. If the condition is verified, it adds an update status text after the title. In this example, […]

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. You will be able to set a custom link url for your image (and button), open it in a new page and link the whole slide. The caption, though, will […]

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 : “Category Archives :” add_filter(‘tc_category_archive_title’ , ‘my_cat_title’); function my_cat_title($title) { return ‘My archives title for : ‘; }   Changing the heading of a specific category’s archives page Note : 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 pages. There are some cases where you might need to change those texts, for example if you use custom posts types.   You easily change these without modifying the core […]

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 below will also make it possible to use an image or whatever you want as navigation for your slider.   Where to copy/paste the code above code? I strongly recommend […]