-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_shorten_link
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Make modifications to URLs prior to shortening.
add_filter(
'wpt_shorten_link',
function(
string $url,
string $shortener,
int $post_ID
) {
// Your code here.
return $url;
},
10,
3
);-
string$urlFull permalink URL to post. -
string$shortenerShortener selected in settings. -
int$post_IDPost ID.
string
apply_filters( 'wpt_shorten_link', $url, $shortener, $post_ID )