Changeset 55681
- Timestamp:
- 04/24/2023 04:35:17 PM (21 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-privacy-policy-content.php
r55363 r55681 21 21 22 22 /** 23 * Add content to the postbox shown when editing the privacy policy.23 * Adds content to the postbox shown when editing the privacy policy. 24 24 * 25 25 * Plugins and themes should suggest text for inclusion in the site's privacy policy. … … 50 50 51 51 /** 52 * Quick check ifany privacy info has changed.52 * Performs a quick check to determine whether any privacy info has changed. 53 53 * 54 54 * @since 4.9.6 … … 124 124 125 125 /** 126 * Output a warning when some privacy info has changed.126 * Outputs a warning when some privacy info has changed. 127 127 * 128 128 * @since 4.9.6 … … 155 155 156 156 /** 157 * Update the cached policy info when the policy page is updated.157 * Updates the cached policy info when the policy page is updated. 158 158 * 159 159 * @since 4.9.6 … … 204 204 205 205 /** 206 * Check for updated, added or removed privacy policy information from plugins.206 * Checks for updated, added or removed privacy policy information from plugins. 207 207 * 208 208 * Caches the current info in post_meta of the policy page. … … 302 302 303 303 /** 304 * Add a notice with a link to the guide when editing the privacy policy page.304 * Adds a notice with a link to the guide when editing the privacy policy page. 305 305 * 306 306 * @since 4.9.6 … … 373 373 374 374 /** 375 * Output the privacy policy guide together with content from the theme and plugins.375 * Outputs the privacy policy guide together with content from the theme and plugins. 376 376 * 377 377 * @since 4.9.6 … … 442 442 443 443 /** 444 * Return the default suggested privacy policy content.444 * Returns the default suggested privacy policy content. 445 445 * 446 446 * @since 4.9.6 … … 691 691 692 692 /** 693 * Add the suggested privacy policy text to the policy postbox.693 * Adds the suggested privacy policy text to the policy postbox. 694 694 * 695 695 * @since 4.9.6 -
trunk/src/wp-includes/class-wp-comment.php
r54133 r55681 220 220 221 221 /** 222 * Convert object to array.222 * Converts object to array. 223 223 * 224 224 * @since 4.4.0 … … 231 231 232 232 /** 233 * Get the children of a comment.233 * Gets the children of a comment. 234 234 * 235 235 * @since 4.4.0 … … 303 303 304 304 /** 305 * Add a child to the comment.305 * Adds a child to the comment. 306 306 * 307 307 * Used by `WP_Comment_Query` when bulk-filling descendants. … … 316 316 317 317 /** 318 * Get a child comment by ID.318 * Gets a child comment by ID. 319 319 * 320 320 * @since 4.4.0 … … 332 332 333 333 /** 334 * Set the 'populated_children' flag.334 * Sets the 'populated_children' flag. 335 335 * 336 336 * This flag is important for ensuring that calling `get_children()` on a childless comment will not trigger … … 346 346 347 347 /** 348 * Checkwhether a non-public property is set.348 * Determines whether a non-public property is set. 349 349 * 350 350 * If `$name` matches a post field, the comment post will be loaded and the post's value checked. -
trunk/src/wp-includes/widgets/class-wp-widget-text.php
r55553 r55681 45 45 46 46 /** 47 * Add hooks for enqueueing assets when registering all widget instances of this widget class.47 * Adds hooks for enqueueing assets when registering all widget instances of this widget class. 48 48 * 49 49 * @param int $number Optional. The unique order number of this widget instance … … 341 341 342 342 /** 343 * Inject max-width and removeheight for videos too constrained to fit inside sidebars on frontend.343 * Injects max-width and removes height for videos too constrained to fit inside sidebars on frontend. 344 344 * 345 345 * @since 4.9.0 … … 411 411 412 412 /** 413 * Enqueue preview scripts.413 * Enqueues preview scripts. 414 414 * 415 415 * These scripts normally are enqueued just-in-time when a playlist shortcode is used. … … 511 511 512 512 /** 513 * Render form template scripts.513 * Renders form template scripts. 514 514 * 515 515 * @since 4.8.0
Note: See TracChangeset
for help on using the changeset viewer.