wpseek.com
WordPress开发者和主题制作者的搜索引擎



editable_slug › WordPress过滤钩子

Since4.4.0
已弃用n/a
apply_filters( 'editable_slug', $tag->slug, $tag )
参数: (2)
  • (string) $slug The editable slug. Will be either a term slug or post URI depending upon the context in which it is evaluated.
    Required: Yes
  • (WP_Term|WP_Post) $tag Term or post object.
    Required: Yes
定义在:
文档:

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.





源码

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