apply_filters( ‘post_link’, string $permalink, WP_Post $post, bool $leavename )

Filters the permalink for a post.

Description

Only applies to posts with post_type of ‘post’.

Parameters

$permalinkstring
The post’s permalink.
$postWP_Post
The post in question.
$leavenamebool
Whether to keep the post name.

More Information

post_link is a filter applied to the permalink URL for a post prior to returning the processed url by the function get_permalink() .

This filter only applies to posts with post_type of ‘post’. For that filter which applies to custom post type look post_type_link.

Source

return apply_filters( 'post_link', $permalink, $post, $leavename );

Changelog

VersionDescription
1.5.0Introduced.

User Contributed Notes

  1. Skip to note 4 content

    Example migrated from Codex:

    Append the query string for posts to permalink URLs (uses add_query_arg):

    function append_query_string( $url, $post, $leavename=false ) {
    	if ( $post->post_type == 'post' ) {
    		$url = add_query_arg( 'foo', 'bar', $url );
    	}
    	return $url;
    }
    add_filter( 'post_link', 'append_query_string', 10, 3 );
  2. Skip to note 6 content
    /**
     * Filter to remove a particular slug from post urls
     */
    function remove_slug_from_URL($permalink) {
    	$new_link = str_replace('/slug-to-remove', '', $permalink);
    	return $new_link;
    }
    add_filter( 'post_link', 'remove_slug_from_URL', 10, 1);

    Used to remove parent category slug from permalinks and maintain subcategories in URL

You must log in before being able to contribute a note or feedback.