apply_filters( 'wp_unique_post_slug', string $slug, int $post_id, string $post_status, string $post_type, int $post_parent, string $original_slug )
- Since
- 3.3.0
Filters the unique post slug.
Compatibility
- WordPress
- since 3.3.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$slugstring- The post slug.
$post_idint- Post ID.
$post_statusstring- The post status.
$post_typestring- Post type.
$post_parentint- Post parent ID
$original_slugstring- The original post slug.
Where this hook fires · 1
wp-includes/post.php:5498wp_unique_post_slug()
Source code
* @param int $post_id Post ID. * @param string $post_status The post status. * @param string $post_type Post type. * @param int $post_parent Post parent ID * @param string $original_slug The original post slug. */ return apply_filters( 'wp_unique_post_slug', $slug, $post_id, $post_status, $post_type, $post_parent, $original_slug );} /** * Truncates a post slug. * * @since 3.6.0Changelog
Introduced in 3.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.