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



pre_get_shortlink › WordPress过滤钩子

Since3.0.0
已弃用n/a
apply_filters( 'pre_get_shortlink', false, $id, $context, $allow_slugs )
参数: (4)
  • (false|string) $return Short-circuit return value. Either false or a URL string.
    Required: Yes
  • (int) $id Post ID, or 0 for the current post.
    Required: Yes
  • (string) $context The context for the link. One of 'post' or 'query',
    Required: Yes
  • (bool) $allow_slugs Whether to allow post slugs in the shortlink.
    Required: Yes
定义在:
文档:

Filters whether to preempt generating a shortlink for the given post.

Returning a value other than false from the filter will short-circuit the shortlink generation process, returning that value instead.





源码

$shortlink = apply_filters( 'pre_get_shortlink', false, $id, $context, $allow_slugs );