wpseek.com
A WordPress-centric search engine for devs and theme authors
rest_output_link_wp_head › WordPress Function
Since4.4.0
Deprecatedn/a
› rest_output_link_wp_head ( No parameters )
See: | |
Defined at: |
|
Codex: |
Outputs the REST API link tag into page header.
Related Functions: rest_output_link_header, rest_output_rsd, adjacent_posts_rel_link_wp_head, wp_shortlink_wp_head, get_shortcut_link
Source
function rest_output_link_wp_head() { $api_root = get_rest_url(); if ( empty( $api_root ) ) { return; } printf( '<link rel="https://api.w.org/" href="%s" />', esc_url( $api_root ) ); $resource = rest_get_queried_resource_route(); if ( $resource ) { printf( '<link rel="alternate" title="%1$s" type="application/json" href="%2$s" />', _x( 'JSON', 'REST API resource link name' ), esc_url( rest_url( $resource ) ) ); } }