Code Monkey home page Code Monkey logo

wp-paginate's Introduction

=== WP-Paginate ===
Contributors: emartin24 
Donate link: http://www.ericmmartin.com/donate/
Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
Requires at least: 2.6.0 (2.7.0 for comments pagination)
Tested up to: 3.2.1
Stable tag: 1.2.4
	
WP-Paginate is a simple and flexible pagination plugin which provides users with better navigation on your WordPress site.

== Description ==

WP-Paginate is a simple and flexible pagination plugin which provides users with better navigation on your WordPress site.

In addition to increasing the user experience for your visitors, it has also been widely reported that pagination increases the SEO of your site by providing more links to your content.

Starting in version 1.1, WP-Paginate can also be used to paginate post comments!

Translations: http://plugins.svn.wordpress.org/wp-paginate/I18n (check the version number for the correct file)
	
== Installation ==

*Install and Activate*

1. Unzip the downloaded WP-Paginate zip file
2. Upload the `wp-paginate` folder and its contents into the `wp-content/plugins/` directory of your WordPress installation
3. Activate WP-Paginate from Plugins page

*Implement*

For posts pagination:
1) Open the theme files where you'd like pagination to be used. Depending on your theme, this may be the `loop.php` file or the `index.php`, `archive.php` and `search.php` files. The `twentyeleven` theme places the pagination code in `functions.php` in the `twentyeleven_content_nav()` function.

2) Replace your existing `previous_posts_link()` and `next_posts_link()` code block with the following:

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

For the `twentyeleven_content_nav` theme, the new function would look like:

	function twentyeleven_content_nav( $nav_id ) {
		global $wp_query;

		if ( function_exists( 'wp_paginate' ) ) {
			wp_paginate();
		}
		else {
			if ( $wp_query->max_num_pages > 1 ) : ?>
				<nav id="<?php echo $nav_id; ?>">
					<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
					<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyeleven' ) ); ?></div>
					<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?></div>
				</nav><!-- #nav-above -->
			<?php endif;
		}
	}


For comments pagination:
1) Open the theme file(s) where you'd like comments pagination to be used. Usually this is the `comments.php` file.

2) Replace your existing `previous_comments_link()` and `next_comments_link()` code block with the following:

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


*Configure*

1) Configure the WP-Paginate settings, if necessary, from the WP-Paginate option in the Settings menu

2) The styles can be changed with the following methods:

* Add a `wp-paginate.css` file in your theme's directory and place your custom CSS there
* Add your custom CSS to your theme's `styles.css`
* Modify the `wp-paginate.css` file in the wp-paginate plugin directory

*Note:* The first two options will ensure that WP-Paginate updates will not overwrite your custom styles.

*Upgrading*

To 1.1.1+:

* Update WP-Paginate settings, change `Before Markup` to `<div class="navigation">`
* Update `wp-paginate.css`, change `.wp-paginate ol` to `.wp-paginate`

== Frequently Asked Questions ==

= How can I override the default pagination settings? =

The `wp_paginate()` and `wp_paginate_comments()` functions each takes one optional argument, in query string format, which allows you to override the global settings. The available options are:

* title - The text/HTML to display before the pagination links
* nextpage - The text/HTML to use for the next page link
* previouspage - The text/HTML to use for the previous page link
* before - The text/HTML to add before the pagination links
* after - The text/HTML to add after the pagination links
* empty - Display before markup and after markup code even when the page list is empty
* range - The number of page links to show before and after the current page
* anchor - The number of links to always show at beginning and end of pagination
* gap - The minimum number of pages before a gap is replaced with an ellipsis (...)

You can even control the current page and number of pages with:

* page - The current page. This function will automatically determine the value
* pages - The total number of pages. This function will automatically determine the value

Example (also applies to `wp_paginate_comments()`):

	<?php if(function_exists('wp_paginate')) {
		wp_paginate('range=4&anchor=2&nextpage=Next&previouspage=Previous');
	} ?>


= How can I style the comments pagination differently than the posts pagination? =

When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.

This allows you to use the `.wp-paginate-comments` styles, already in `wp-paginate.css`, to override the default styles.

== Screenshots ==

1. An example of the WP-Paginate display using the default options and styling
2. The WP-Paginate admin settings page


== Upgrade Notice ==

N/A

== Changelog ==

= 1.2.4 =
* Ensure pagination of posts when wp_paginate() is called
  Github pull request via whacao
* Support loading on https pages (plugin now requires WordPress 2.6+)
  Github pull request via hadvig 

= 1.2.3 =
* Fixed deprecated parameter to the WordPress add_options_page() function
  Github pull request via alexwybraniec

= 1.2.2 =
* Fixed a XSS vulnerability reported by Andreas Schobel (@aschobel)

= 1.2.1 =
* Added is_rtl function check to prevent errors with older version of WordPress

= 1.2 =
* Added RTL language support
* Fixed comments pagination bug
* Changed language domain name from wp_paginate to wp-paginate (this will affect translation file names)

= 1.1.2 =
* Fixed comment pagination bug (nested comments caused blank page)
* Enabled HTML for Pagination Label, Previous Page, and Next Page
* Localization changes were made, Translations need to be updated

= 1.1.1 =
* Changed output to include `wp-paginate` and `wp-paginate-comments` class names on the `ol` element
* Changed the `before` option from `<div class="wp-paginate">` to `<div class="navigation">`
* Added `.wp-paginate-comments` styles to `wp-paginate.css`
* Changed styles in `wp-paginate.css`

= 1.1 =
* Added `wp_paginate_comments()` function for pagination of post comments

= 1.0.1 =
* Added I18n folder and wp-paginate.pot file
* Fixed some internationalization and spelling errors
* Updated readme.txt and added more details

= 1.0 =
* Initial release

wp-paginate's People

Contributors

ericmmartin avatar deanmarktaylor avatar hadvig avatar

Watchers

Clem Blanco avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.