Changeset 60249
- Timestamp:
- 05/26/2025 11:18:03 AM (10 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 6 edited
-
comment-template.php (modified) (1 diff)
-
formatting.php (modified) (2 diffs)
-
ms-load.php (modified) (2 diffs)
-
rest-api/class-wp-rest-response.php (modified) (2 diffs)
-
rest-api/endpoints/class-wp-rest-controller.php (modified) (1 diff)
-
taxonomy.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r60166 r60249 2096 2096 * Only affects users with JavaScript disabled. 2097 2097 * 2098 * @internal The $comment global must be present to allow template tags access to the current2099 * comment. See https://core.trac.wordpress.org/changeset/36512.2098 * {@internal The $comment global must be present to allow template tags access to the current 2099 * comment. See https://core.trac.wordpress.org/changeset/36512.} 2100 2100 * 2101 2101 * @since 2.7.0 -
trunk/src/wp-includes/formatting.php
r60227 r60249 2552 2552 * Balances tags of string using a modified stack. 2553 2553 * 2554 * {@internal Modified by Scott Reilly (coffee2code) 02 Aug 2004 2555 * 1.1 Fixed handling of append/stack pop order of end text 2556 * Added Cleaning Hooks 2557 * 1.0 First Version} 2558 * 2554 2559 * @since 2.0.4 2555 2560 * @since 5.3.0 Improve accuracy and add support for custom element tags. … … 2560 2565 * @version 1.1 2561 2566 * @todo Make better - change loop condition to $text in 1.2 2562 * @internal Modified by Scott Reilly (coffee2code) 02 Aug 20042563 * 1.1 Fixed handling of append/stack pop order of end text2564 * Added Cleaning Hooks2565 * 1.0 First Version2566 2567 * 2567 2568 * @param string $text Text to be balanced. -
trunk/src/wp-includes/ms-load.php
r57877 r60249 130 130 * Retrieves the closest matching network for a domain and path. 131 131 * 132 * {@internal In 4.4.0, converted to a wrapper for WP_Network::get_by_path()} 133 * 132 134 * @since 3.9.0 133 *134 * @internal In 4.4.0, converted to a wrapper for WP_Network::get_by_path()135 135 * 136 136 * @param string $domain Domain to check. … … 553 553 * Retrieves an object containing information about the requested network. 554 554 * 555 * {@internal In 4.6.0, converted to use get_network()} 556 * 555 557 * @since 3.9.0 556 558 * @deprecated 4.7.0 Use get_network() 557 559 * @see get_network() 558 560 * 559 * @internal In 4.6.0, converted to use get_network()560 *561 561 * @param object|int $network The network's database row or ID. 562 562 * @return WP_Network|false Object containing network information if found, false if not. -
trunk/src/wp-includes/rest-api/class-wp-rest-response.php
r54891 r60249 44 44 * Adds a link to the response. 45 45 * 46 * @internal The $rel parameter is first, as this looks nicer when sending multiple.46 * {@internal The $rel parameter is first, as this looks nicer when sending multiple.} 47 47 * 48 48 * @since 4.4.0 … … 136 136 * Sets a single link header. 137 137 * 138 * @internal The $rel parameter is first, as this looks nicer when sending multiple.138 * {@internal The $rel parameter is first, as this looks nicer when sending multiple.} 139 139 * 140 140 * @since 4.4.0 -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php
r56559 r60249 663 663 * Sanitizes the slug value. 664 664 * 665 * @since 4.7.0 666 * 667 * @internal We can't use sanitize_title() directly, as the second 665 * {@internal We can't use sanitize_title() directly, as the second 668 666 * parameter is the fallback title, which would end up being set to the 669 * request object. 667 * request object.} 668 * 669 * @since 4.7.0 670 670 * 671 671 * @see https://github.com/WP-API/WP-API/issues/1585 -
trunk/src/wp-includes/taxonomy.php
r59784 r60249 1293 1293 * Prior to 4.5.0, taxonomy was passed as the first parameter of `get_terms()`. 1294 1294 * 1295 * {@internal The `$deprecated` parameter is parsed for backward compatibility only.} 1296 * 1295 1297 * @since 2.3.0 1296 1298 * @since 4.2.0 Introduced 'name' and 'childless' parameters. … … 1301 1303 * Introduced 'meta_key' and 'meta_value' parameters. Introduced the ability to order results by metadata. 1302 1304 * @since 4.8.0 Introduced 'suppress_filter' parameter. 1303 *1304 * @internal The `$deprecated` parameter is parsed for backward compatibility only.1305 1305 * 1306 1306 * @param array|string $args Optional. Array or string of arguments. See WP_Term_Query::__construct() … … 1928 1928 * Default $args is 'hide_empty' which can be 'hide_empty=true' or array('hide_empty' => true). 1929 1929 * 1930 * {@internal The `$deprecated` parameter is parsed for backward compatibility only.} 1931 * 1930 1932 * @since 2.3.0 1931 1933 * @since 5.6.0 Changed the function signature so that the `$args` array can be provided as the first parameter. 1932 *1933 * @internal The `$deprecated` parameter is parsed for backward compatibility only.1934 1934 * 1935 1935 * @param array|string $args Optional. Array or string of arguments. See WP_Term_Query::__construct()
Note: See TracChangeset
for help on using the changeset viewer.