Changeset 53053
- Timestamp:
- 04/02/2022 01:53:06 PM (3 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/embed.php
r52437 r53053 329 329 330 330 /** 331 * Adds oEmbed discovery links in the website <head>.331 * Adds oEmbed discovery links in the head element of the website. 332 332 * 333 333 * @since 4.4.0 -
trunk/src/wp-includes/formatting.php
r52821 r53053 375 375 * and pops on tag close. 376 376 * 377 * Assumes first char of $textis tag opening and last char is tag closing.378 * Assumes second char of $text is optionally '/' to indicate closing as in </html>.377 * Assumes first char of `$text` is tag opening and last char is tag closing. 378 * Assumes second char of `$text` is optionally `/` to indicate closing as in `</html>`. 379 379 * 380 380 * @since 2.9.0 … … 430 430 * A group of regex replaces used to identify text formatted with newlines and 431 431 * replace double line breaks with HTML paragraph tags. The remaining line breaks 432 * after conversion become <<br />> tags, unless $bris set to '0' or 'false'.432 * after conversion become `<br />` tags, unless `$br` is set to '0' or 'false'. 433 433 * 434 434 * @since 0.71 … … 910 910 * Converts a number of special characters into their HTML entities. 911 911 * 912 * Specifically deals with: &, <, >, ", and '.913 * 914 * $quote_style can be set to ENT_COMPAT to encode "to915 * ", or ENT_QUOTES to do both. Default is ENT_NOQUOTES where no quotes are encoded.912 * Specifically deals with: `&`, `<`, `>`, `"`, and `'`. 913 * 914 * `$quote_style` can be set to ENT_COMPAT to encode `"` to 915 * `"`, or ENT_QUOTES to do both. Default is ENT_NOQUOTES where no quotes are encoded. 916 916 * 917 917 * @since 1.2.2 … … 995 995 * Converts a number of HTML entities into their special characters. 996 996 * 997 * Specifically deals with: &, <, >, ", and '.998 * 999 * $quote_style can be set to ENT_COMPAT to decode "entities,1000 * or ENT_QUOTES to do both " and '. Default is ENT_NOQUOTES where no quotes are decoded.997 * Specifically deals with: `&`, `<`, `>`, `"`, and `'`. 998 * 999 * `$quote_style` can be set to ENT_COMPAT to decode `"` entities, 1000 * or ENT_QUOTES to do both `"` and `'`. Default is ENT_NOQUOTES where no quotes are decoded. 1001 1001 * 1002 1002 * @since 2.8.0 … … 4511 4511 4512 4512 /** 4513 * Escapes single quotes, htmlspecialchar " < > &, and fixes line endings.4513 * Escapes single quotes, `"`, `<`, `>`, `&`, and fixes line endings. 4514 4514 * 4515 4515 * Escapes text strings for echoing in JS. It is intended to be used for inline JS 4516 * (in a tag attribute, for example onclick="..."). Note that the strings have to4516 * (in a tag attribute, for example `onclick="..."`). Note that the strings have to 4517 4517 * be in single quotes. The {@see 'js_escape'} filter is also applied here. 4518 4518 * -
trunk/src/wp-includes/functions.wp-scripts.php
r51726 r53053 167 167 * number is automatically added equal to current installed WordPress version. 168 168 * If set to null, no version is added. 169 * @param bool $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.169 * @param bool $in_footer Optional. Whether to enqueue the script before `</body>` instead of in the `<head>`. 170 170 * Default 'false'. 171 171 * @return bool Whether the script has been registered. True on success, false on failure. … … 341 341 * number is automatically added equal to current installed WordPress version. 342 342 * If set to null, no version is added. 343 * @param bool $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.343 * @param bool $in_footer Optional. Whether to enqueue the script before `</body>` instead of in the `<head>`. 344 344 * Default 'false'. 345 345 */ -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php
r53048 r53053 483 483 484 484 /** 485 * Retrieves the head tagsection.485 * Retrieves the head element section. 486 486 * 487 487 * @since 5.9.0 -
trunk/src/wp-includes/theme.php
r52940 r53053 1949 1949 1950 1950 /** 1951 * Filters the Custom CSS Output into the <head>.1951 * Filters the custom CSS output into the head element. 1952 1952 * 1953 1953 * @since 4.7.0
Note: See TracChangeset
for help on using the changeset viewer.