Changeset 23899 for trunk/wp-includes/query.php
- Timestamp:
- 04/04/2013 08:09:02 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r23876 r23899 3698 3698 switch ( $format ) { 3699 3699 case 'image': 3700 get_the_ image( 'full', $post );3700 get_the_post_format_image( 'full', $post ); 3701 3701 if ( isset( $post->split_content ) ) 3702 3702 $split_content = $post->split_content; 3703 3703 break; 3704 3704 case 'audio': 3705 get_the_ media( 'audio', $post );3705 get_the_post_format_media( 'audio', $post ); 3706 3706 if ( isset( $post->split_content ) ) 3707 3707 $split_content = $post->split_content; 3708 3708 break; 3709 3709 case 'video': 3710 get_the_ media( 'video', $post );3710 get_the_post_format_media( 'video', $post ); 3711 3711 if ( isset( $post->split_content ) ) 3712 3712 $split_content = $post->split_content;
Note: See TracChangeset
for help on using the changeset viewer.