get_boundary_post_rel_link()WP 2.8.0

Устарела с версии 3.3.0. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.

Get boundary post relational link.

Can either be start or end post relational link.

Хуки из функции

Возвращает

Строку.

Использование

get_boundary_post_rel_link( $title, $in_same_cat, $excluded_categories, $start );
$title(строка)
Link title format.
По умолчанию: '%title'
$in_same_cat(true|false)
Whether link should be in a same category.
По умолчанию: false
$excluded_categories(строка)
Excluded categories IDs.
По умолчанию: ''
$start(true|false)
Whether to display link to first or last post.
По умолчанию: true

Список изменений

С версии 2.8.0 Введена.
Устарела с 3.3.0

Код get_boundary_post_rel_link() WP 6.5.2

function get_boundary_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '', $start = true) {
	_deprecated_function( __FUNCTION__, '3.3.0' );

	$posts = get_boundary_post($in_same_cat, $excluded_categories, $start);
	// If there is no post, stop.
	if ( empty($posts) )
		return;

	// Even though we limited get_posts() to return only 1 item it still returns an array of objects.
	$post = $posts[0];

	if ( empty($post->post_title) )
		$post->post_title = $start ? __('First Post') : __('Last Post');

	$date = mysql2date(get_option('date_format'), $post->post_date);

	$title = str_replace('%title', $post->post_title, $title);
	$title = str_replace('%date', $date, $title);
	$title = apply_filters('the_title', $title, $post->ID);

	$link = $start ? "<link rel='start' title='" : "<link rel='end' title='";
	$link .= esc_attr($title);
	$link .= "' href='" . get_permalink($post) . "' />\n";

	$boundary = $start ? 'start' : 'end';
	return apply_filters( "{$boundary}_post_rel_link", $link );
}