Changeset 49692
- Timestamp:
- 11/24/2020 09:20:36 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-icon.php
r47122 r49692 217 217 * @param int $post_id Post ID. 218 218 * @param string $meta_key Meta key. 219 * @param string|array $single Meta value, or an array of values.219 * @param bool $single Whether to return only the first value of the specified `$meta_key`. 220 220 * @return array|null|string The attachment metadata value, array of values, or null. 221 221 */ -
trunk/src/wp-includes/class-wp-object-cache.php
r48104 r49692 171 171 * @since 3.0.0 172 172 * 173 * @param array$groups List of groups that are global.173 * @param string|string[] $groups List of groups that are global. 174 174 */ 175 175 public function add_global_groups( $groups ) { -
trunk/src/wp-includes/pluggable.php
r49193 r49692 166 166 * @param string $message Message contents 167 167 * @param string|array $headers Optional. Additional headers. 168 * @param string|array $attachments Optional. Files to attach.168 * @param string|array $attachments Optional. Paths to files to attach. 169 169 * @return bool Whether the email contents were sent successfully. 170 170 */ … … 177 177 * @since 2.2.0 178 178 * 179 * @param array $args A compacted array of wp_mail() arguments, including the "to" email, 180 * subject, message, headers, and attachments values. 179 * @param array $args { 180 * Array of the `wp_mail()` arguments. 181 * 182 * @type string|string[] $to Array or comma-separated list of email addresses to send message. 183 * @type string $subject Email subject. 184 * @type string $message Message contents. 185 * @type string|string[] $headers Additional headers. 186 * @type string|string[] $attachments Paths to files to attach. 187 * } 181 188 */ 182 189 $atts = apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) ); -
trunk/src/wp-includes/post.php
r49673 r49692 2744 2744 * @since 3.7.0 2745 2745 * 2746 * @param object $counts An object containing the attachment counts by 2747 * mime type. 2748 * @param string $mime_type The mime type pattern used to filter the attachments 2749 * counted. 2746 * @param object $counts An object containing the attachment counts by 2747 * mime type. 2748 * @param string|string[] $mime_type Array or comma-separated list of MIME patterns. 2750 2749 */ 2751 2750 return apply_filters( 'wp_count_attachments', (object) $counts, $mime_type );
Note: See TracChangeset
for help on using the changeset viewer.