wpseek.com
A WordPress-centric search engine for devs and theme authors



editable_slug › WordPress Filter Hooks

Since4.4.0
Deprecatedn/a
apply_filters( 'editable_slug', $tag->slug, $tag )
Parameters: (2)
  • () slug The editable slug. Will be either a term slug or post URI depending upon the context in which it is evaluated.
    Required: Yes
  • () tag Term or post object.
    Required: Yes
Defined at:
Codex:

Filters the editable slug for a post or term.

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




Source

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