Changeset 53087 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 04/06/2022 03:31:23 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r53041 r53087 3225 3225 3226 3226 /** 3227 * Displays a referrer strict-origin-when-cross-origin meta tag. 3228 * 3229 * Outputs a referrer origin-when-cross-origin meta tag that tells the browser not to send the full 3230 * url as a referrer to other sites when cross-origin assets are loaded. 3231 * 3232 * Typical usage is as a wp_head callback. add_action( 'wp_head', 'wp_strict_cross_origin_referrer' ); 3227 * Displays a referrer `strict-origin-when-cross-origin` meta tag. 3228 * 3229 * Outputs a referrer `strict-origin-when-cross-origin` meta tag that tells the browser not to send 3230 * the full URL as a referrer to other sites when cross-origin assets are loaded. 3231 * 3232 * Typical usage is as a {@see 'wp_head'} callback: 3233 * 3234 * add_action( 'wp_head', 'wp_strict_cross_origin_referrer' ); 3233 3235 * 3234 3236 * @since 5.7.0
Note: See TracChangeset
for help on using the changeset viewer.