Category Archives: Wordpress

Number Validation Using JavaScript

Here I explain, how to perform number validation using pur javascript method. The values of the Number field textbox is compared using isNaN() inbuilt function in JavaScript .If the values do not numeric values an error message is displayed like ‘Enter Numeric value only’. If the values are numeric then display the sucess message will… Read More »

WordPress Form Plugin with ShortCode

Hi all, I am going to explain you how easily you can create your own shortcode using one simple examples. Shortcode function to create shortcode in WordPress plugin. For using shortcode function, you have to define a handler function that parse the shortcode and return some output. Then, you need to register a shortcode using… Read More »

Redirect subdomain to main domain htaccess

Hi friends, Try adding this to an appropriate place in your .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} ^prittytimes\.com$ [NC] RewriteRule ^ http://prittytimes.com/webcrased [L,R] As long as the requested host is prittytimes\.com, the rule will be applied. With the regex match set to ^, any URI will match and the target will be redirected to http://prittytimes.com/webcrased… Read More »

How To Install WordPress

Hi Friends, Today we discuss one different topic related to WordPress. This article shows how to install wordpress in locally or cpanel with clear picture. STEP 1: Download the WordPress installation package To start the wordpress installation, first you need to download the wordpress package from wordpress official site. Download and install the latest version… Read More »

How To Install WordPress Plugins

Hi Guys, Today I share one important topic related to WordPress plugin. We know how to install wordpress plugin through wordpress dashboard. But I share this article to wordpress beginers for reference with step by step with clear picture. To install worpress plugin you successfully install wordpress then we can install plugins, theme,page, post etc.… Read More »

Create a WordPress Post

WordPress display different types of content with different title. Each item of such content is generally called as post. Adding post into your blog, first login admin panel and go to Posts then click ‘add new’. Post are displays reverse order in your home page. On this page you will see the wordpress post editior.The… Read More »