next_post()
Устарела с версии 2.0.0. Больше не поддерживается и может быть удалена. Используйте next_post_link().
Prints link to the next post.
Хуки из функции
Возвращает
null. Ничего (null).
Использование
next_post( $format, $next, $title, $in_same_cat, $limitnext, $excluded_categories );
- $format(строка)
- .
По умолчанию:'%' - $next(строка)
- .
По умолчанию:'next post: ' - $title(строка)
- .
По умолчанию:'yes' - $in_same_cat(строка)
- .
По умолчанию:'no' - $limitnext(int)
- .
По умолчанию:1 - $excluded_categories(строка)
- .
По умолчанию:''
Заметки
| Смотрите: next_post_link() |
Список изменений
| С версии 0.71 | Введена. |
| Устарела с 2.0.0 | Use next_post_link() |
Код next_post() next post WP 7.1
function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat='no', $limitnext=1, $excluded_categories='') {
_deprecated_function( __FUNCTION__, '2.0.0', 'next_post_link()' );
if ( empty($in_same_cat) || 'no' == $in_same_cat )
$in_same_cat = false;
else
$in_same_cat = true;
$post = get_next_post($in_same_cat, $excluded_categories);
if ( !$post )
return;
$string = '<a href="'.get_permalink($post->ID).'">'.$next;
if ( 'yes' == $title )
/** This filter is documented in wp-includes/post-template.php */
$string .= apply_filters('the_title', $post->post_title, $post->ID);
$string .= '</a>';
$format = str_replace('%', $string, $format);
echo $format;
}