get_posts_nav_link [ WordPress Function ]
get_posts_nav_link ( $args = array() )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: posts_nav_link, next_posts_link, get_post_format_link, get_post_permalink, get_next_posts_link
Return post pages link navigation for previous and next pages.
Source
<?php
function get_posts_nav_link( $args = array() ) {
global $wp_query;
$return = '';
if ( !is_singular() ) {
$defaults = array(
'sep' => ' — ',
'prelabel' => __('« Previous Page'),
'nxtlabel' => __('Next Page »'),
);
$args = wp_parse_args( $args, $defaults );
$max_num_pages = $wp_query->max_num_pages;
$paged = get_query_var('paged');
//only have sep if there's both prev and next results
if ($paged < 2 || $paged >= $max_num_pages) {
$args['sep'] = '';
}
if ( $max_num_pages > 1 ) {
$return = get_previous_posts_link($args['prelabel']);
$return .= preg_replace('/&([^#])(?![a-z]{1,8};)/i', '&$1', $args['sep']);
$return .= get_next_posts_link($args['nxtlabel']);
}
}
return $return;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- get_posts_nav_link (WordPress Function) - WPSeek.com
WordPress lookup for get_posts_nav_link, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - get_posts_nav_link | A HitchHackers guide through WordPress
Feb 12, 2011 ... function get_posts_nav_link( $args = array() ) { global $wp_query; $return = ''; if ( !is_singular() ) { $defaults = array( 'sep' => ' — ', 'prelabel' ...
hitchhackerguide.com - PHPXRef 0.7 : WordPress : Function Reference: get_posts_nav_link()
Function and Method Cross Reference. get_posts_nav_link(). Defined at: /wp- includes/link-template.php -> line 1587. Referenced 1 times: ...
phpxref.ftwr.co.uk - get_posts_nav_link:WordPress私的マニュアル
2012年1月11日 ... get_posts_nav_link - 前後のページへのリンクテキストを取得する.
elearn.jp