Changeset 59865
- Timestamp:
- 02/24/2025 01:41:07 PM (4 months ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-privacy-requests-table.php
r59336 r59865 497 497 public function column_default( $item, $column_name ) { 498 498 /** 499 * Fires for each custom column of a specific request type in the Requests list table.499 * Fires for each custom column of a specific request type in the Privacy Requests list table. 500 500 * 501 501 * Custom columns are registered using the {@see 'manage_export-personal-data_columns'} 502 502 * and the {@see 'manage_erase-personal-data_columns'} filters. 503 * 504 * The dynamic portion of the hook name, `$this->screen->id`, refers to the ID given to the list table 505 * according to which screen it's displayed on. 506 * 507 * Possible hook names include: 508 * 509 * - `manage_export-personal-data_custom_column` 510 * - `manage_erase-personal-data_custom_column` 503 511 * 504 512 * @since 5.7.0 -
trunk/src/wp-admin/nav-menus.php
r59265 r59865 674 674 /** 675 675 * @global int $_wp_nav_menu_max_depth 676 * 677 * @since 3.0.0 676 678 * 677 679 * @param string $classes -
trunk/src/wp-includes/https-detection.php
r59517 r59865 103 103 * @param null|WP_Error $pre Error object to short-circuit detection, 104 104 * or null to continue with the default behavior. 105 * @return null|WP_Error Error object if HTTPS detection errors are found, null otherwise.106 105 */ 107 106 $support_errors = apply_filters( 'pre_wp_get_https_detection_errors', null ); -
trunk/src/wp-includes/link-template.php
r59703 r59865 3052 3052 * @param string $template The default template. 3053 3053 * @param string $css_class The class passed by the calling function. 3054 * @return string Navigation template.3055 3054 */ 3056 3055 $template = apply_filters( 'navigation_markup_template', $template, $css_class ); -
trunk/src/wp-includes/media.php
r59688 r59865 5472 5472 * this hook. 5473 5473 * 5474 * @since 6.7.0 5475 * 5474 5476 * @param int|null $post_id The result of the post ID lookup. Null to indicate 5475 5477 * no lookup has been attempted. Default null. -
trunk/src/wp-includes/option.php
r59787 r59865 1169 1169 * The dynamic portion of the hook name, `$option`, refers to the option name. 1170 1170 * 1171 * @since 2.5.0 As "add_option_{$name}"1171 * @since 2.5.0 As `add_option_{$name}` 1172 1172 * @since 3.0.0 1173 1173 * -
trunk/src/wp-includes/update.php
r59861 r59865 15 15 * Checks WordPress version against the newest version. 16 16 * 17 * The WordPress version, PHP version, and locale is sent .17 * The WordPress version, PHP version, and locale is sent to api.wordpress.org. 18 18 * 19 19 * Checks against the WordPress server at api.wordpress.org. Will only check … … 307 307 * Despite its name this function does not actually perform any updates, it only checks for available updates. 308 308 * 309 * A list of all plugins installed is sent to WP, along with the site locale.309 * A list of all plugins installed is sent to api.wordpress.org, along with the site locale. 310 310 * 311 311 * Checks against the WordPress server at api.wordpress.org. Will only check … … 579 579 * Despite its name this function does not actually perform any updates, it only checks for available updates. 580 580 * 581 * A list of all themes installed is sent to WP, along with the site locale.581 * A list of all themes installed is sent to api.wordpress.org, along with the site locale. 582 582 * 583 583 * Checks against the WordPress server at api.wordpress.org. Will only check
Note: See TracChangeset
for help on using the changeset viewer.