Changeset 1054
- Timestamp:
- 12/18/2014 08:39:49 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/template-tags.php
r1052 r1054 1028 1028 $post = get_post( $post ); 1029 1029 1030 if ( $long_description = get_post_meta( $post->ID, 'wporg_parsed_content', true ) ) { 1031 $long_description = apply_filters( 'the_content', $long_description ); 1032 } 1033 1034 return $long_description; 1030 $description = $post->post_content; 1031 1032 if ( $description ) { 1033 $description = apply_filters( 'the_content', apply_filters( 'get_the_content' , $description ) ); 1034 } 1035 1036 return $description; 1035 1037 } 1036 1038
Note: See TracChangeset
for help on using the changeset viewer.