Madhur Kapoor’s Blog

Bringing Best of Gaming and Technology

Wordpress Plugin : BackupWordpress

Wordpress

With so many security flaws being found in Wordpress , it becomes necessary to update wordpress and take a backup of your blog . BackupWordpress is a plugin that will allow you to perform automatic backup of your blog at scheduled times . It can even mail you the backups at your specified email .

This plugin operates in two modes

  • Easy Mode : This is a simple mode in which you have to specify the backup directory , the backup schedule and settings related to email
  • Advanced Mode : In this mode , you get a lot of options which include managing custom schedules , viewing backup log , managing backup presets etc.

You can even take backups manually and mail it to yourself if you dont want automatic backups. You can also specify the number of previous backups which you want to keep at the server. You can download this plugin from here .

High Five to Freakitude

Wordpress Plugin : WP-Table

There are times when we would like to represent some statistical data in our blog through the use of tables. Tables can be created in WYSIWYG editor through the use of html tags but it is not easy for basic users who dont have much knowledge of html. Even for advanced users , it will be time consuming. Luckily plugins are there to make our life easier .

WP-Table is a plugin by Alex Rabethat lets you create and manage html tables for wordpress. You can also change the look and feel of the table by modifying a css file or you can import a table in csv format. Read the rest of this entry »

Wordpress Plugin : Customizable Post Listings

The best thing about Wordpress is that its functionality can be increased by the use of various plugins that are available all over the internet. I was looking for a plugin that can display Recent Entries from a specific category in the sidebar , that when i came across it.

Customizable Post Listings is a plugin by Scott Reilly that can display Recent Posts , Recent commented posts , Random posts etc in a customizable manner . The best thing is that the post searches can be narrowed by using Category , Author and stuff.

Installation and Use

  1. Download the plugin and unzip it into your plugins directory
  2. Activate the plugin from the Wordpress plugin page
  3. You can modify the options according to your likes in the plugin editor
  4. You can use the following codes to dispaly the relevent thing

To display Recent Postsuse <?php c2c_get_recent_posts(3); ?>where 3 is the number of posts to be displayed

To display Recently commneted posts use <?php c2c_get_recently_commented(3); ?>

There are a lot of functions which you can use and customize according to your needs.

Wordpress Plugin : Adhesive

When you visit many forums ,you will notice that some of the topics are “sticky” ,that means they are always displayed on top of other posts . All the items posted are displayed after the sticky posts . But in a blog the posts are displayed in reverse chronological order , i.e. the older posts are pushed down the order when new ones are added .”Sticky” posts are necessary in blogs when you wish to make some important announcement or post something which you want to be displayed for sometime . Read the rest of this entry »