Changeset 57785
- Timestamp:
- 03/06/2024 05:04:00 AM (7 months ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r57755 r57785 275 275 * @since 3.1.0 276 276 * 277 * @global WP_Embed $wp_embed 277 * @global WP_Embed $wp_embed WordPress Embed object. 278 278 */ 279 279 function wp_ajax_oembed_cache() { … … 3382 3382 * 3383 3383 * @global WP_Post $post Global post object. 3384 * @global WP_Embed $wp_embed 3384 * @global WP_Embed $wp_embed WordPress Embed object. 3385 3385 */ 3386 3386 function wp_ajax_send_link_to_editor() { … … 3734 3734 * @since 4.0.0 3735 3735 * 3736 * @global WP_Post $post Global post object.3737 * @global WP_Embed $wp_embed Embed API instance.3736 * @global WP_Post $post Global post object. 3737 * @global WP_Embed $wp_embed WordPress Embed object. 3738 3738 * @global WP_Scripts $wp_scripts 3739 3739 * @global int $content_width -
trunk/src/wp-includes/block-template.php
r57019 r57785 211 211 * @global string $_wp_current_template_id 212 212 * @global string $_wp_current_template_content 213 * @global WP_Embed $wp_embed 214 * @global WP_Query $wp_query 213 * @global WP_Embed $wp_embed WordPress Embed object. 214 * @global WP_Query $wp_query WordPress Query object. 215 215 * 216 216 * @return string Block template markup. -
trunk/src/wp-includes/class-wp-oembed-controller.php
r54831 r57785 161 161 * 162 162 * @see WP_oEmbed::get_html() 163 * @global WP_Embed $wp_embed 163 * @global WP_Embed $wp_embed WordPress Embed object. 164 164 * @global WP_Scripts $wp_scripts 165 165 * -
trunk/src/wp-includes/embed.php
r57648 r57785 15 15 * @since 2.9.0 16 16 * 17 * @global WP_Embed $wp_embed 17 * @global WP_Embed $wp_embed WordPress Embed object. 18 18 * 19 19 * @param string $id An internal ID/name for the handler. Needs to be unique. … … 33 33 * @since 2.9.0 34 34 * 35 * @global WP_Embed $wp_embed 35 * @global WP_Embed $wp_embed WordPress Embed object. 36 36 * 37 37 * @param string $id The handler ID that should be removed. … … 231 231 * @since 4.0.0 232 232 * 233 * @global WP_Embed $wp_embed 233 * @global WP_Embed $wp_embed WordPress Embed object. 234 234 * 235 235 * @param array $matches The RegEx matches from the provided regex when calling
Note: See TracChangeset
for help on using the changeset viewer.