next_post

Definition:
function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat='no', $limitnext=1, $excluded_categories='') {}

Prints link to the next post.

Parameters

  • string $format
  • string $next
  • string $title
  • string $in_same_cat
  • int $limitnext
  • string $excluded_categories

Defined filters

  • the_title
    apply_filters('the_title', $post->post_title, $post->ID)

Source code

function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat='no', $limitnext=1, $excluded_categories='') {

	_deprecated_function( __FUNCTION__, '2.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 )

		$string .= apply_filters('the_title', $post->post_title, $post->ID);

	$string .= '</a>';

	$format = str_replace('%', $string, $format);

	echo $format;

}

2443

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: