If you never heard about WP Rocket, you’ve come to the right place. WP Rocket plugin is a first commercial WordPress caching plugin and is relatively new compared to other caching plugins such as W3 Total Cache and WP Super Cache. Although the plugin was just released internationally a few months ago, the plugin was first released […]
How to Add Footer Navigation in Genesis Framework (HTML5)
By default, Genesis Framework comes with 2 navigations, referred as primary navigation and secondary navigation. In this tutorial, we’ll show you how to add a footer navigation or menu to your Genesis child theme. Please note that since this is a theme-specific feature, the code below should go into your child theme’s functions.php file. This code assumed that you’re using […]
How to Customize Reply Link in WordPress Comment
In most WordPress sites, you may notice a Reply link under each comment. This allows you to reply other person’s comment easily. Here’s an example from Twenty Twelve theme: In this tutorial, I’ll show you how to easily customize the reply link or replace the “Reply” word with your own word. WordPress has a filter […]
How to Add Agree to Terms and Conditions Checkbox in WordPress
Whenever you register a new account on a site, most of the time you’ll see a checkbox asking you to agree to terms and conditions of the site. This is important when you want the users to follow certain rules or terms while using the site. Is that possible to add that ‘Agree to Terms […]
How to Edit or Remove Before and After Comment Notes
In most standard WordPress themes, you’ll see before and after comment notes. This is an example from Twenty Twelve theme: I’ve seen many people asking how to remove any of these notes. It turned out that this is very simple to do. Using comment_form_defaults filter, we can easily customize the notes or completely remove them. Here’s a […]
How to Prevent WordPress From Executing Shortcode in Post
Two days ago, we published an awesome article about using Genesis Framework shortcodeto customize Genesis child themes. On of the difficulties we had was preventing the shortcode from being executed when we include it in the body of the post. Since we’re using Genesis Framework, any Genesis shortcode that we put in the body of the post […]
How to Display Custom Taxonomy With Genesis Framework Shortcode
Besides hooks, Genesis Framework has lots of shortcodes to help you customize your child theme. Before this, we’ve published a tutorial on creating your first custom post type and custom taxonomy and today, we’ll show how easy it is to display the custom taxonomy on your site. Using Shortcode If you refer to Genesis shortcode reference page, you’ll notice a less-known shortcode. To display […]
Creating Your First Custom Taxonomy in WordPress
Tag and category are two default WordPress taxonomies. They help to manage and grouping your WordPress posts. However, sometimes that isn’t enough, especially when you have Custom Post Type. For example, if you have Portfolio CPT, having ‘Type’ or ‘Price Range’ taxonomy will help you grouping all the portfolio items differently from normal posts. For more […]