Changeset 22369
- Timestamp:
- 11/05/2012 04:47:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-embed.php
r21999 r22369 26 26 add_filter( 'the_content', array( $this, 'autoembed' ), 8 ); 27 27 28 // Aftera post is saved, invalidate the oEmbed cache29 add_action( ' save_post', array( $this, 'delete_oembed_caches' ) );28 // When a post is saved, invalidate the oEmbed cache 29 add_action( 'pre_post_update', array( $this, 'delete_oembed_caches' ) ); 30 30 31 31 // After a post is saved, cache oEmbed items via AJAX
Note: See TracChangeset
for help on using the changeset viewer.