Changeset 63497
- Timestamp:
- 09/05/2026 09:57:52 AM (5 days ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
-
wp-admin/comment.php (modified) (1 diff)
-
wp-admin/includes/media.php (modified) (1 diff)
-
wp-admin/includes/post.php (modified) (1 diff)
-
wp-includes/class-wp-image-editor.php (modified) (1 diff)
-
wp-includes/comment-template.php (modified) (1 diff)
-
wp-includes/comment.php (modified) (3 diffs)
-
wp-includes/media.php (modified) (2 diffs)
-
wp-includes/meta.php (modified) (1 diff)
-
wp-includes/post-template.php (modified) (1 diff)
-
wp-includes/post.php (modified) (2 diffs)
-
wp-includes/taxonomy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/comment.php
r61859 r63497 373 373 * @since 2.1.0 374 374 * 375 * @param string $location The URI the user will be redirected to.376 * @param int $comment_id The ID of the comment being edited.375 * @param string $location The URI the user will be redirected to. 376 * @param int $comment_id The ID of the comment being edited. 377 377 */ 378 378 $location = apply_filters( 'comment_edit_redirect', $location, $comment_id ); -
trunk/src/wp-admin/includes/media.php
r63481 r63497 3619 3619 * 3620 3620 * @param array $metadata An existing array with data. 3621 * @param array $data Data supplied by ID3 tags.3621 * @param array $data Data supplied by ID3 tags. 3622 3622 */ 3623 3623 function wp_add_id3_tag_data( &$metadata, $data ) { -
trunk/src/wp-admin/includes/post.php
r63420 r63497 2608 2608 * @access private 2609 2609 * 2610 * @param bool $value Whether the CPT supports block editor or not.2610 * @param bool $value Whether the CPT supports block editor or not. 2611 2611 * @param string $post_type Post type. 2612 2612 * @return bool Whether the block editor should be disabled or not. -
trunk/src/wp-includes/class-wp-image-editor.php
r62517 r63497 260 260 * @param int $quality Quality level between 1 (low) and 100 (high). 261 261 * @param string $mime_type Image mime type. 262 * @param array $size {262 * @param array $size { 263 263 * Dimensions of the image. 264 264 * -
trunk/src/wp-includes/comment-template.php
r63487 r63497 926 926 * 927 927 * @param string|int $comments_number A string representing the number of comments a post has, otherwise 0. 928 * @param int $post_id Post ID.928 * @param int $post_id Post ID. 929 929 */ 930 930 return apply_filters( 'get_comments_number', $comments_number, $post_id ); -
trunk/src/wp-includes/comment.php
r63207 r63497 1248 1248 * @type int $max_depth Maximum comment threading depth allowed. 1249 1249 * } 1250 * @param int $comment_idID of the comment.1250 * @param int $comment_id ID of the comment. 1251 1251 */ 1252 1252 return apply_filters( 'get_page_of_comment', (int) $page, $args, $original_args, $comment_id ); … … 3446 3446 * @since 7.1.0 3447 3447 * 3448 * @param bool $should_disable Whether pings should be disabled. Default true3449 * for non-production environments, false for production.3448 * @param bool $should_disable Whether pings should be disabled. Default true 3449 * for non-production environments, false for production. 3450 3450 * @param string $environment_type The current environment type as returned by 3451 3451 * wp_get_environment_type(). … … 3686 3686 * 3687 3687 * @param string $server Host of blog to connect to. 3688 * @param string $path Path to send the ping.3688 * @param string $path Path to send the ping. 3689 3689 */ 3690 3690 function weblog_ping( $server = '', $path = '' ) { -
trunk/src/wp-includes/media.php
r63419 r63497 1620 1620 * } 1621 1621 * } 1622 * @param array $size_array{1622 * @param array $size_array { 1623 1623 * An array of requested width and height values. 1624 1624 * … … 4125 4125 * @since 3.5.0 4126 4126 * 4127 * @param string $output Adjacent image HTML markup.4128 * @param int $attachment_id Attachment ID4129 * @param string|int[] $size Requested image size. Can be any registered image size name, or4130 * an array of width and height values in pixels (in that order).4131 * @param string $text Link text.4127 * @param string $output Adjacent image HTML markup. 4128 * @param int $attachment_id Attachment ID 4129 * @param string|int[] $size Requested image size. Can be any registered image size name, or 4130 * an array of width and height values in pixels (in that order). 4131 * @param string $text Link text. 4132 4132 */ 4133 4133 return apply_filters( "{$adjacent}_image_link", $output, $attachment_id, $size, $text ); -
trunk/src/wp-includes/meta.php
r61584 r63497 1428 1428 * object type is 'post'. 1429 1429 * } 1430 * @param string|array $deprecated Deprecated. Use `$args` instead.1430 * @param string|array $deprecated Deprecated. Use `$args` instead. 1431 1431 * @return bool True if the meta key was successfully registered in the global array, false if not. 1432 1432 * Registering a meta key with distinct sanitize and auth callbacks will fire those callbacks, -
trunk/src/wp-includes/post-template.php
r63487 r63497 1637 1637 * @param bool $fullsize Optional. Whether to use full size. Default false. 1638 1638 * @param bool $deprecated Deprecated. Not used. 1639 * @param bool $permalink Optional. Whether to include permalink. Default false.1639 * @param bool $permalink Optional. Whether to include permalink. Default false. 1640 1640 */ 1641 1641 function the_attachment_link( $post = 0, $fullsize = false, $deprecated = false, $permalink = false ) { -
trunk/src/wp-includes/post.php
r63488 r63497 6013 6013 * @param string $new_status Transition to this post status. 6014 6014 * @param string $old_status Previous post status. 6015 * @param WP_Post $post Post data.6015 * @param WP_Post $post Post data. 6016 6016 */ 6017 6017 function wp_transition_post_status( $new_status, $old_status, $post ) { … … 8783 8783 * 8784 8784 * @param int $attachment_id Attachment ID. 8785 * @param bool $unfiltered Optional. Passed through to `get_attached_file()`. Default false.8785 * @param bool $unfiltered Optional. Passed through to `get_attached_file()`. Default false. 8786 8786 * @return string|false Path to the original image file or false if the attachment is not an image. 8787 8787 */ -
trunk/src/wp-includes/taxonomy.php
r63488 r63497 1834 1834 * @since 2.3.0 1835 1835 * 1836 * @param mixed $valueValue of the term field.1837 * @param int $term_idTerm ID.1836 * @param mixed $value Value of the term field. 1837 * @param int $term_id Term ID. 1838 1838 * @param string $taxonomy Taxonomy slug. 1839 1839 */ … … 3771 3771 * @since 2.5.0 3772 3772 * 3773 * @param array $object_ids An array of object IDs.3773 * @param array $object_ids An array of object IDs. 3774 3774 * @param string $object_type Object type. 3775 3775 */
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)