Browsing Category
WordPress
26 posts
How to use custom CSS in Redux framework option panel
Redux WordPress framework is awesome in its way. It powers developer with an awesome options panel, that you…
How to Add Font Awesome Icons to Redux Options Panel
Redux WordPress framework includes Elusive Icons by default for your options panel icon needs. Elusive Icons are very limited…
WordPress.com vs WordPress.org: Which One to Choose?
WordPress is an open source CMS (content management system) website development framework written in PHP. This is probably…
WordPress Page Not Found 404 Page Template Sample
While you work hard to make sure that every link actually goes to a specific web page on…
Limit Archive Page Content with Read More Link in WordPress
Most of the classic WordPress blog themes display full content in archive page. If you want to limit…
How to List All the Categories for Custom Post Type
If you just want to list the custom post categories (taxonomies), then you can use the get_terms function.…
Why You Should Use WordPress for Your Website?
WordPress is an open source CMS (content management system) website development framework written in PHP. This is probably…
Introduction to WordPress Development: A Definitive Guide
1. Introduction to WordPress WordPress is an open source CMS (content management system) website development framework written in…
Drupal Vs. WordPress: Which one to Choose?
The popularity of Content Management Systems is growing at a rapid pace. In fact, some of the best…
How to Notify Author with Email after Post Is Published in WordPress
If you have an multi-author Wordpress blog and you allow guest blogging, then your often need require to send an email notification when their post is reviewed and published. The following code snippet will help you to send an email to the post author after post is live. Just add the following to your theme function.php
How to Disable the Emoji Code in WordPress
Since version 4.2 release, WordPress natively adds supports Emoji characters. Because if this WordPress loads some extra java…
How to Register & Display Sidebars in WordPress
You can register sidebar by calling register_sidebar() method. Just provide a unique name to each sidebar (eg: “Right Sidebar”, “Left Sidebar”). These names are displayed in Wordpress admin dashboard interface.
How to Remove all WordPress Widgets in Admin Dashboard
In this video tutorial, we will see how to remove all widgets from WordPress Dashboard. When you logged into your WordPress dashboard, you will notice several widgets such as Activity Stream, WordPress News, Quick Draft and few others widgets based on user role.
How to Limit Authors and Contributors to their Own Post in WordPress
This little code hack will help you to limit your authors and contributors to their own posts in WordPress admin. Copy and past the following code in you function.php file.
How to Include Custom Post in WordPress Author Archive Page
Is your WordPress theme not showing custom post on Author Archive page? Add the following code snippet to functions.php file. This WordPress hook will include custom post types in WordPress Author archive page.
How to Add Google Prettify Syntax Highlighter in WordPress
Include the following script tag in your to your WordPress theme before to support Google Prettify Syntax Highlighter.
How to Remove Emoji from WordPress 4.2 Website
How to Remove Emoji from WordPress 4.2+ Website
How to Fetch All Sub Categories of an Selected WordPress Category
The following code snippet will fetch all sub categories of selected category. Add the following code snippet to your themes archive.php/category.php page.
How to Include WordPress Custom Post Types to Archive Page
The default WordPress author archive page template displays only default post types. The custom posts are not included. The following WordPress code snippet will help you to include WordPress custom post types to author archive page.
How to validate user Gravatar for specific email id
The following PHP snippet can be used to determine if Gravatar is available for specified email. It returns TRUE for valid gravatar otherwise it returns false.