Changeset 1057 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-reference.php
- Timestamp:
- 12/19/2014 09:57:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-reference.php
r1053 r1057 46 46 47 47 <?php 48 $explanation = '';48 $explanation = get_explanation_field( 'post_content', get_the_ID() ); 49 49 if ( $explanation ) : 50 50 ?> … … 52 52 <section class="explanation"> 53 53 <h2><?php _e( 'Explanation', 'wporg' ); ?></h2> 54 <?php the_content(); ?>54 <?php echo apply_filters( 'the_content', apply_filters( 'get_the_content', $explanation ) ); ?> 55 55 </section> 56 56 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.