apply_filters( ‘editable_slug’, string $slug, WP_Term|WP_Post $tag )

In this article

Filters the editable slug for a post or term.

Description

Note: This is a multi-use hook in that it is leveraged both for editable post URIs and term slugs.

Parameters

$slugstring
The editable slug. Will be either a term slug or post URI depending upon the context in which it is evaluated.
$tagWP_Term|WP_Post
Term or post object.

Source

$slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : '';

Changelog

VersionDescription
4.4.0The $tag parameter was added.
2.6.0Introduced.

User Contributed Notes

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