post_link хук-фильтрWP 1.5.0

Filters the permalink for a post.

Only applies to posts with post_type of 'post'.

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

add_filter( 'post_link', 'wp_kama_post_link_filter', 10, 3 );

/**
 * Function for `post_link` filter-hook.
 * 
 * @param string  $permalink The post's permalink.
 * @param WP_Post $post      The post in question.
 * @param bool    $leavename Whether to keep the post name.
 *
 * @return string
 */
function wp_kama_post_link_filter( $permalink, $post, $leavename ){

	// filter...
	return $permalink;
}
$permalink(строка)
The post's permalink.
$post(WP_Post)
The post in question.
$leavename(true|false)
Whether to keep the post name.

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

С версии 1.5.0 Введена.

Где вызывается хук

get_permalink()
post_link
wp-includes/link-template.php 308
return apply_filters( 'post_link', $permalink, $post, $leavename );

Где используется хук в WordPress

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