Changeset 55753
- Timestamp:
- 05/12/2023 09:33:08 PM (19 months ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-activate.php
r55515 r55753 88 88 function do_activate_header() { 89 89 /** 90 * Fires before the Site Activation page is loaded.90 * Fires within the `<head>` section of the Site Activation page. 91 91 * 92 92 * Fires on the {@see 'wp_head'} action. -
trunk/src/wp-admin/includes/deprecated.php
r55653 r55753 198 198 * 199 199 * @param string $filename 200 **/200 */ 201 201 function codepress_get_lang( $filename ) { 202 202 _deprecated_function( __FUNCTION__, '3.0.0' ); … … 208 208 * @since 2.8.0 209 209 * @deprecated 3.0.0 210 **/210 */ 211 211 function codepress_footer_js() { 212 212 _deprecated_function( __FUNCTION__, '3.0.0' ); … … 218 218 * @since 2.8.0 219 219 * @deprecated 3.0.0 220 **/220 */ 221 221 function use_codepress() { 222 222 _deprecated_function( __FUNCTION__, '3.0.0' ); -
trunk/src/wp-admin/includes/media.php
r55703 r55753 255 255 * @access private 256 256 * @since 3.4.0 257 * 258 * @param array $matches Single regex match. 259 * @return string Cleaned up HTML for caption. 257 260 */ 258 261 function _cleanup_image_add_caption( $matches ) { -
trunk/src/wp-admin/includes/ms.php
r55694 r55753 849 849 /** 850 850 * @param array $users 851 * @return bool 851 852 */ 852 853 function confirm_delete_users( $users ) { -
trunk/src/wp-admin/includes/widgets.php
r55276 r55753 68 68 * @access private 69 69 * 70 * @param array $a First array. 71 * @param array $b Second array. 70 72 * @return int 71 73 */ -
trunk/src/wp-includes/class-simplepie.php
r55703 r55753 21 21 * 22 22 * @since 3.5.0 23 * 24 * @param string $class Class name. 23 25 */ 24 26 function wp_simplepie_autoload( $class ) { -
trunk/src/wp-includes/comment.php
r55749 r55753 2982 2982 * 2983 2983 * @param int|WP_Post $post Post ID or object to do trackbacks on. 2984 * @return void|false Returns false on failure. 2984 2985 */ 2985 2986 function do_trackbacks( $post ) { -
trunk/src/wp-includes/deprecated.php
r55732 r55753 3917 3917 * @since 2.6.0 3918 3918 * @deprecated 4.9.0 3919 * 3919 * @return string 3920 3920 */ 3921 3921 function get_shortcut_link() { -
trunk/src/wp-includes/feed.php
r53539 r55753 748 748 * 749 749 * @param string $type Type of feed. Possible values include 'rss', rss2', 'atom', and 'rdf'. 750 * @return string Content type for specified feed type. 750 751 */ 751 752 function feed_content_type( $type = '' ) { -
trunk/src/wp-includes/plugin.php
r55703 r55753 708 708 * @param string $replacement Optional. The hook that should have been used. Default empty. 709 709 * @param string $message Optional. A message regarding the change. Default empty. 710 * @return mixed The filtered value after all hooked functions are applied to it. 710 711 */ 711 712 function apply_filters_deprecated( $hook_name, $args, $version, $replacement = '', $message = '' ) { -
trunk/tests/phpunit/tests/theme/wpThemeJsonResolver.php
r55613 r55753 954 954 * 955 955 * @covers WP_Theme_JSON_Resolver::get_style_variations 956 * */956 */ 957 957 public function test_get_style_variations_returns_all_variations() { 958 958 // Switch to a child theme.
Note: See TracChangeset
for help on using the changeset viewer.