By default Customizr(-Pro) displays the Category/Tag description after the title. You might want to display it in a different place. With the following snippet we’ll see how to display it below the posts navigation. $term_description_filters = array( ‘cat’, ‘tag’, ‘tax’ ); //do not automatically show term descriptions below the title […]
Target: Categories
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 […]
Since Customizr 3.2, this feature has been built into the Customise Global Settings. See the Customizr Documentation. Where to copy/paste this code? The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we […]
Howdy Customizr developer, The following is a quick snippet that will expand (meaning show the full content instead of the excerpt) the last published post of a category list. As usual, I will try to show you the safest way to code this with the use of a child theme […]