Thursday, May 27, 2010

3 Wordpress Plugins to Tweak Your Wordpress Blog Pagination

1. WordPress SEO Pager

Summary:

Best feature:SEO-friendly
Look and feelShows the last post date on hover-over
Customization:
  • Pager appearance (color, labels, style);
  • SEO options (add page numbers to title to make them all different, enable post excerpt)

Installation:

1. Upload and activate the plugin;

2. Go to the plugin settings and customize the look and feel:

SEO pager

3. You are done!

WP SEO pager

2. WP Page Numbers

Summary:

Best feature:Choose different themes (5 styles are available)
Customization:Easily customize the paging structure, look and feel

Installation:

1. Upload and activate the plugin;

2. Go to the plugin settings and customize the look and feel:

WP page numbers - settings

3. Use the following code wherever you want paging to appear in your template files:

<?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>

4. You are done!

Wordpress paging

3. Paginator

Summary:

Best feature:The plugin is based on the scrolling technique
Customization:The number of visible pages

Installation:

1. Upload and activate the plugin;

2. Go to the plugin settings and set:

  • Number of pages visible at once (before you scroll)
  • The total number of pages:

Paginator settings

3. Use the following code wherever you want paging to appear in your template files:

<?php if(function_exists('wp_paginator')) { wp_paginator(); }   ?>

4. (Optionally) To change CSS style of Paginator, edit /wp-content/plugins/paginator/skin/paginator3000.css

5. You are done!

WP paginator



source: searchenginejournal

No comments:

Post a Comment