how to remove default post and comment from wordpress

remove default post and comment from wordpress, When we install the wordpress then wordpress put the dummy post and comment called “hello world”.

how to remove default post and comment from wordpress

If we want to remove that you can easily done this. Using following wordpress plugin.

Delete Default Post

Download the wordpress plugin

This plugin will delete the default post and comments which is inserted by wordpress.

how to remove default post and comment from wordpress
how to remove default post and comment from wordpress

How to use Seo Meta Tags wordpress plugin

we created Seo Meta Tags wordpress plugin. We really happy to announce this news. This is our fourth wordpress plugin by our team which helpful for seo.

How to install SEO meta Tags?

Follow the usual routine;

  1. Open WP admin – Plugins – Add New
  2. Enter “Seo Meta Tags” under search and hit Enter
  3. Plugin will show up as the first on the list, click “Install Now”

Or if needed, upload manually. Follow the steps below to install the plugin.

  1. Upload the seo-meta-tags directory to the /wp-content/plugins/directory
  2. Activate the plugin through the ‘Plugins’ menu in wp
  3. Go to “Seo Meta Tags” option to configure the button

Launched the Seo Meta Tags wordpress plugin

Seo Meta Tags

Using this plugin you will get following features:

We ensure you that Seo Meta Tags plugin will increase your website SEO with two week so drastically.

You can enter your meta keywords and description for your homepage.
This plugin will add different Meta description for each individual post as your excerpt of your post.
This will help your blog to rank better in google. You can easily increase your blog traffic using this plugin.

Using SEO meta tags you can create sitemap for google, yahoo, bing, yandex. It has facility to add  Google, Bing Verify ownership with wordpress website.

This plugin is really helpful to SEO. Search engine will read meta description for each page.
Using this plugin your blog will have different meta description and relative meta description as per your single post.
That is really helpful to your blog.

Here you can see the screen shot of Seo Meta Tags Admin panel:

How to use Seo Meta Tags wordpress plugin
How to use Seo Meta Tags wordpress plugin

You can download Seo Meta Tags from following URL:

Add Webmaster Tool Information.

Official URL of Seo Meta Tags wordpress plugin:

http://wordpress.org/extend/plugins/seo-meta-tags/

How to create photo gallery in wordpress

Creating a photo gallery is very good idea in any websites because photos say more than text.

So many people create very nice photo galleries in wordpress. Still some people does know how to create a photo gallery using wordpress website.

How to create photo gallery in wordpress

In this article I will give you idea about how to create the photo gallery.

1. NextGEN Gallery

Download

2. Page Flip Image Gallery

Download

3. Image Gallery Reloaded

Download

4. Random image gallery with light box

How to create photo gallery in wordpress

Download

Best wordpress plugins for creating forums

Forums is like basic need of current websites. Using the forums you can really give interaction to all website users. As we know many websites are building in wordpress and client want forums as part of wordpress website.

Best wordpress plugins for creating forums

No need to worry, there are really free some good plugins are available to integrate the forums in to wordpress site. Here in this article I am going to give you some really good options to install forums in wordpress websites.

1. WP Forum

Best wordpress plugins for creating forums
Best wordpress plugins for creating forums

Download

2. WP-Forum Latest Posts

Download

3. Forum Server

Download

4. Group Forum Subscripton for BuddyPress

Download

5. Zingiri Forum

Download

6. bbPress Integration

Download

7. Simple:Press Forum

Download

Alexa Rank Widget WordPress plugin

We Created Alexa Rank Widget wordpress plugin. This plugin is open source and any one can freely download this wordpress plugin.

How to Install Alexa Rank Widget WordPress plugin?

Follow the steps below to install the plugin.

  1. Upload the Alexa Rank Widget directory to the /wp-content/plugins/directory
  2. Activate the plugin through the ‘Plugins’ menu in wp
  3. Go to “Alexa Rank Widget” option to configure the button

Alexa Rank Widget WordPress plugin

Here we are giving you the brief description about Alexa Rank Widget wordpress plugin.
The Alexa Rank Widget easily allows to add widget in wordpress sidebar.
This widget will give to control the website name how you want to show the alexa widget in your sidebar.
using this plugin you will get show options for showing the Alexa rank in side bar.
1. Squre – Button  (120 x 95)
2. Vertical – Vertical Banner  (120 x 240)

As we in today’s date showing Alexa web ranking is important for SEO and for attracting your advertiser and viewer.

This information is good for site owner as well as viewer.

Here you can see Some screen shots of Alexa Rank Widget:

1. Preview of Alexa Rank Widget with image and rank with squre box.

Alexa Rank Widget WordPress plugin
Alexa Rank Widget WordPress plugin

2. Preview of Alexa Rank Widget with image and rank with verticle box.

3. Alexa Rank Widget admin panel for your configration of your button as per your choice

Alexa Rank Widget WordPress plugin
Alexa Rank Widget WordPress plugin

You can download Alexa Rank Widget from following URL:

Alexa Rank Widget : Download

Official URL of Alexa Rank Widget wordpress plugin:

http://wordpress.org/extend/plugins/alexa-rank-widget/

How to add Meta box to wordpress admin post page

This article will tell you about, How to add Meta box to wordpress admin post and page.Use following code and create wordpressapi.php file and upload this file to wp-content/plugins/ folder.


<?php
/*
Plugin Name:  WordPressapi Meta Box
Plugin URI: http://images.purabtech.in/
Description: Adding the Meta box to admin panel -> post
Version: 0.0
Author: WordPressapi
Author URI: http://images.purabtech.in/
*/

function wordpressapi_meta_box() {
add_meta_box(
'wordpressapi',
'Wordpressapi Box', //Meta box title
'write_in_meta_box',
'post' // You can define here where to add the Meta box(post, page, link)
);
}

function write_in_meta_box(){
echo "Wordpressapi is writing something in admin meta box";
}

if (is_admin())
add_action('admin_menu', 'wordpressapi_meta_box');
?>
add Meta box to wordpress admin
add Meta box to wordpress admin

Go to your Plugin tab and activate the “WordPressapi Meta Box” plugin.
After activating the plugin you are able to see the Meta box on post page.