rest_response_link_curies

过滤钩子


apply_filters( 'rest_response_link_curies', array()
参数
  • (array)
    $additional
    Additional CURIEs to register with the REST API.
    Required:
定义位置
  • wp-includes/rest-api/class-wp-rest-response.php
    , line 289
引入
4.5.0
弃用

Filters extra CURIEs available on REST API responses.

CURIEs allow a shortened version of URI relations. This allows a more
usable form for custom relations than using the full URI. These work
similarly to how XML namespaces work.

Registered CURIES need to specify a name and URI template. This will
automatically transform URI relations into their shortened version.
The shortened relation follows the format {name}:{rel}. {rel} in
the URI template will be replaced with the {rel} part of the
shortened relation.

For example, a CURIE with name example and URI template
http://w.org/{rel} would transform a http://w.org/term relation
into example:term.

Well-behaved clients should expand and normalize these back to their
full URI relation, however some naive clients may not resolve these
correctly, so adding new CURIEs may break backward compatibility.

$additional = apply_filters( 'rest_response_link_curies', array() );
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。