How to wordpress

WordPress is World's most popular, open source blog tool and publishing platform powered by PHP and MySQL. Everyone loves and so do we.
------------------------------------------
Follow us @ Facebook or Subscribe to our RSS feeds to make the most of WordPress.

Remove URLs from Google Search or Google Cache via Google Webmasters?

remove_url_google_webmaster

If you are the identified owner of the site with Google Webmasters, you can easily remove urls. Here is how to do it. Log-in into Google Webmasters. Go to "Site Configuration" > Crawler Access > Remove URL. Click "New Removal Request" Enter the URL that you want to remove from … [Read more...]

How to get approved in BuySellAds (BSA) publisher network

BuySellAds1

BuySellAds is one of the best revenue earning network for publishers. You don't have to check your earnings daily, you are paid a fixed amount for month by the advertiser. You decide the amount and put it up on display for someone to buy. BuySellAds (BSAM) takes a flat 25% of your earning and … [Read more...]

Redirect URL using .htaccess

WordPress

1. Use the following code Redirect permanent /folder http://www.abc.com/newfolder From the above code, you can redirect a url such as "www.abc.com/folder" to a new destination as "www.abc.com/newfolder". You can modify it according to your requirements. 2. Open the .htaccess file found in … [Read more...]

Redirect www to http// (www.abc.com to http://abc.om)

Redirect www to http

Here is the code, paste it in .htaccess file found in "/public_html" directory. RewriteCond %{HTTP_HOST} ^www\.abc\.com [NC] RewriteRule ^(.*)$ http://abc.com/$1 [L,R=301] Copy the code and paste it above # END WordPress, see the image above. Just replace the domain name. … [Read more...]

Install Google Analytics code in Genesis Theme from Studiopress

genesis settings

Genesis makes it easy to install scripts and takes only a minute or so to run it live. Below is the way : 1. Copy your "Google analytics" code. See this post from Google on finding your tracking code. 2. Go to "Theme Settings" under Genesis (see the image below) 3. Now, paste the code … [Read more...]

Learn to Backup Your WordPress Blog to Dropbox

Wordpress to dropbox

There aren't many who are looking to harness the usability of Cloud storage. We are seriously recommending you to use Dropbox as a backup for WordPress hosted site as it can save you, if something goes wrong at your site. Below are the steps. 1. Register a account at … [Read more...]

Top 5 Social Bookmarking Plugins for WordPress

bookmarking

There are lots of social bookmarking plugins available for WordPress but you don't need all of them, you need only one that works at your site and not all. Below are Top 5 social bookmarking plugins for Wordpress. Add to Any Share/Save/Bookmark Button This plugin has every functionality that you … [Read more...]

How to add no-follow to a link (Web-Development)

nofollow link

Adding nofollow to a link is basically telling search engines not to index that particular link. It stops that link from back-linking to the mentioned page. Below are the steps 1. This is normal link in html format with no attributes <a … [Read more...]

Learn to See No follow links on any WebPage

No Follow See Links

  This works for every browser. 1. Create a new Bookmark with any name, and in the url menu put the code, mentioned below javascript:function highlightNofollow(){var … [Read more...]

WordPress Plugin for jQuery Image Lazy Load

wordpress_tn

Many users of  WordPress search for plugin to implement cool shading laziness that occurs while loading images on sites like mashable.com and few others. The effect happens due to jQuery loading them in a lazy manner. Lazy loader delays loading of images in (long) pages. Images below the … [Read more...]