WP_REST_Response::remove_link
Removes a link from the response.
Method of the class: WP_REST_Response{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_REST_Response = new WP_REST_Response(); $WP_REST_Response->remove_link( $rel, $href );
- $rel(string) (required)
- Link relation. Either an IANA registered type, or an absolute URL.
- $href(string|null)
- Only remove links for the relation matching the given href.
Default:null
Changelog
| Since 4.4.0 | Introduced. |
WP_REST_Response::remove_link() WP REST Response::remove link code WP 7.0
public function remove_link( $rel, $href = null ) {
if ( ! isset( $this->links[ $rel ] ) ) {
return;
}
if ( $href ) {
$this->links[ $rel ] = wp_list_filter( $this->links[ $rel ], array( 'href' => $href ), 'NOT' );
} else {
$this->links[ $rel ] = array();
}
if ( ! $this->links[ $rel ] ) {
unset( $this->links[ $rel ] );
}
}