Linux 软件免费装
Banner图

Linchpin - PrevNextPage

开发者 aware
linchpin_agency
更新时间 2012年9月7日 03:35
捐献地址: 去捐款
PHP版本: 3.0 及以上
WordPress版本: 3.4.1

标签

pages shortcode simple pagination next previous loop utilities presentations prev linchpin traverse

下载

详情介绍:

Create next/previous links for pages. Adds the functions next_page_link() and previous_page_link() which links sibling to page(s). If your page doesn't have a direct sibling the plugin will try to go out to the parent of the current page and get the parent's next sibling. If enabled the plugin will also loop from end->beginning and beginning->end. This plugin is great for utilizing WordPress for presentations. If you create a set of pages. This plugin will cycle through them. Additionally you could utilize some javascript to create a timer to automatically go from page to page. This plugin is based on 'Next and Previous Page not Post' by Matt McInvale. Although it's gone through almost a complete rewrite from his release in 09. This plugin is a bit more optimized to take advantage of newer plugin techniques. Includes code from banesto as well regarding references to grandparent pages. Also added in additional features such as $args array for easier customization down the road. This plugin is great for utilizing wordpress as a presentation tool. See the FAQs Page for Snippets and Examples

安装:

  1. Manually upload linchpin-nextprevpage.php to the /wp-content/plugins/linchpin-next-page-link-previous-page-link directory on your server (creating the folder if necessary. Or utilize the seach and install within the 'Plugins' menu of the WordPress Admin
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Place <?php echo next_page_link(); ?> or <?php echo previous_page_link(); ?> in your templates or utilize [next_page_link] [previous_page_link] shortcode or do_shortcode([previous_page_link]);

常见问题:

Examples

Function Options next_page_link( $args:array ); previous_page_link( $args:array );

  • 'label' => '', // What ever you want your link to be labeled. If no label is given the url is utilized
  • 'loop' => NULL, // 'expand', 'loop'
  • 'getPagesQuery' => 'sort_column=menu_order&sort_order=asc',
  • 'link_class' => '', // class given to the anchor for styling or js library
  • 'link_id' => '', // id given to the anchor for styling or js reference
  • 'echo' => 'true', //
  • 'direction' => '', // 'next', 'prev'
Function Examples
  • <?php echo previous_page_link( array ( 'label' => 'View My Previous Page', 'loop' => 'loop', 'link_class' => 'ui-button-disabled' ) ); ?>
  • <?php echo next_page_link( array ( 'label' => 'Next Page' ) ); ?>
Shortcode Options
  • 'label' = '',
  • 'loop' = '', // 'expand', 'loop'
  • 'getPagesQuery' = 'sort_column=menu_order&sort_order=asc',
  • 'link_class' = '',
  • 'link_id' = '',
  • 'direction' = '', // 'next', 'prev'
Shortcode Examples
  • [previous_page_link]
  • [next_page_link label="View My Next Page"]

Why not use 'Next and Previous Page Not Post'?

Great question. No reason really. I think this one is a bit more efficient but I didn't do an apples to apples comparison. Though this plugin does have a few more options available regarding customization such as classes and IDs being applied to the links if you choose.

更新日志:

1.0.2 1.0.1 1.0