add a activitypub_rest_url
filter
This commit is contained in:
parent
c99daa3e72
commit
ec00ace234
1 changed files with 5 additions and 2 deletions
|
@ -238,8 +238,11 @@ function is_tombstone( $wp_error ) {
|
||||||
function get_rest_url_by_path( $path = '' ) {
|
function get_rest_url_by_path( $path = '' ) {
|
||||||
// we'll handle the leading slash.
|
// we'll handle the leading slash.
|
||||||
$path = ltrim( $path, '/' );
|
$path = ltrim( $path, '/' );
|
||||||
$url = sprintf( '/%s/%s', ACTIVITYPUB_REST_NAMESPACE, $path );
|
$namespaced_path = sprintf( '/%s/%s', ACTIVITYPUB_REST_NAMESPACE, $path );
|
||||||
return \get_rest_url( null, $url );
|
$rest_url = \get_rest_url( null, $namespaced_path );
|
||||||
|
// Just in case there are non-default ways of handling REST URLs.
|
||||||
|
$rest_url = \apply_filters( 'activitypub_rest_url', $rest_url, $path, ACTIVITYPUB_REST_NAMESPACE );
|
||||||
|
return $rest_url;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue