Tag: wordpress
Remove WordPress Revisions
WordPress Posts Revisions are useful especially in the case of a multi author blog. However, There is a cost to having all these saved revisions of your posts in the aspect of database entries. Instead of having a single MySQL database record for your post you will have multiple records for each post therefore increasing…
How to Add Pinterest “Pin It” to WordPress
Pinterest is a vision board-styled social photo sharing website and app where users can create and manage theme-based image collections. Users of Pinterest curate themed image boards, populating them with media found online using the “Pin It” button, or uploaded from their computer. Each such item of media is known as a “pin,” and can…
The Basic of WordPress Post Revisions
WordPress has built in feature that automatically saves versions or revisions of your posts as you edit and create them. WordPress, by default, will save copies of each edit made to a post or page, allowing the possibility of reverting to a previous version of that post or page. The saving of revisions can be…
Redirect certain pages from http to https with .htaccess
The following trick is useful for E-Commerce sites. We only need few pages redirected to https to secure transaction This will automatically rewrite the url to https as long as the page is not already an https link. This conditional keeps it from causing a loop. It’s very handy to have this capabilit thus allowing…
Basic robots.txt for WordPress
1. Never allow indexing of the cgi-bin 2. Never allow indexing WordPress folders If you want to allow the wp-content/uploads folder 3. Block feeds, this will make the robots crawling on-site content, gives better ranks in the SEARCH ENGINE RESULT PAGE 4. Never allow indexing trackback 5. Make robots think comments as part of the…
How to change the bullet size and color with CSS
The following code snippet help you change the bullet size and color of your unordered lists. We are using simple CSS code to do that 1. Create your bullet list image via Adobe Photoshop or you can use another image editor to do that (e.g Pixelmator). Save the image as a transparent png image file.…