Commit 0bab7fa4 authored by Andrew Nacin's avatar Andrew Nacin
Browse files

Set the taxonomy property in the WP_Adjacent_Post class. fixes #26937.

Built from https://develop.svn.wordpress.org/trunk@27296


git-svn-id: https://core.svn.wordpress.org/trunk@27151 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent 626bb315
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1262,6 +1262,7 @@ class WP_Adjacent_Post {
		$this->current_post = get_post( $args['post'] );
		$this->excluded_terms = array_map( 'intval', $args['excluded_terms'] );
		$this->adjacent       = $args['previous'] ? 'previous' : 'next';
		$this->taxonomy       = $args['taxonomy'];
		$this->in_same_term   = (bool) $args['in_same_term'];

		// Return null when either the post or taxonomy doesn't exist.