pre_get_shortlink хук-фильтр . WP 3.0.0
Filters whether to preempt generating a shortlink for the given post.
Returning a truthy value from the filter will effectively short-circuit the shortlink generation process, returning that value instead.
Использование
add_filter( 'pre_get_shortlink', 'filter_function_name_2790', 10, 4 ); function filter_function_name_2790( $return, $id, $context, $allow_slugs ){ // filter... return $return; }
- $return(false/строка)
- Short-circuit return value. Either false or a URL string.
- $id(число)
- Post ID, or 0 for the current post.
- $context(строка)
- The context for the link. One of 'post' or 'query',
- $allow_slugs(true/false)
- Whether to allow post slugs in the shortlink.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
pre_get_shortlink
wp-includes/link-template.php 3896
$shortlink = apply_filters( 'pre_get_shortlink', false, $id, $context, $allow_slugs );