On this page
apply_filters( 'pre_get_shortlink', false|string $return, int $id, string $context, bool $allow_slugs )
Filters whether to preempt generating a shortlink for the given post.
Description
Returning a value other than false from the filter will short-circuit the shortlink generation process, returning that value instead.
Parameters
$returnfalse|string-
Short-circuit return value. Either false or a URL string.
$idint-
Post ID, or 0 for the current post.
$contextstring-
The context for the link. One of
'post'or'query', $allow_slugsbool-
Whether to allow post slugs in the shortlink.
Source
File: wp-includes/link-template.php. View all references
$shortlink = apply_filters( 'pre_get_shortlink', false, $id, $context, $allow_slugs );
Related
Used By
| Used By | Description |
|---|---|
| wp_get_shortlink() wp-includes/link-template.php | Returns a shortlink for a post, page, attachment, or site. |
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/pre_get_shortlink