post_link filter-hook . WP 1.5.0
Filters the permalink for a post.
Only applies to posts with post_type of 'post'.
Usage
add_filter( 'post_link', 'filter_function_name_4276', 10, 3 ); function filter_function_name_4276( $permalink, $post, $leavename ){ // filter... return $permalink; }
- $permalink(string)
- The post's permalink.
- $post(WP_Post)
- The post in question.
- $leavename(true/false)
- Whether to keep the post name.
Changelog
Since 1.5.0 | Introduced. |
Where the hook is called
wp-includes/link-template.php 252
return apply_filters( 'post_link', $permalink, $post, $leavename );