rest_output_link_wp_head()
Outputs the REST API link tag into page header.
Description Description
See also See also
Source Source
File: wp-includes/rest-api.php
function rest_output_link_wp_head() { $api_root = get_rest_url(); if ( empty( $api_root ) ) { return; } echo "<link rel='https://api.w.org/' href='" . esc_url( $api_root ) . "' />\n"; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |