Changeset 834
- Timestamp:
- 09/04/2014 07:37:33 PM (11 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-reference.php
r833 r834 49 49 <section class="meta">Used by TODO | Uses TODO | TODO Examples</section> 50 50 <?php endif; ?> 51 <hr/>52 <section class="explanation">53 <h2><?php _e( 'Explanation', 'wporg' ); ?></h2>54 </section>55 51 */ ?> 52 53 <?php 54 ob_start(); 55 the_content(); 56 $explanation = ob_get_clean(); 57 if ( $explanation ) : 58 ?> 59 <hr/> 60 <section class="explanation"> 61 <h2><?php _e( 'Explanation', 'wporg' ); ?></h2> 62 <?php the_content(); ?> 63 </section> 64 <?php endif; ?> 56 65 57 66 <?php if ( $params = get_params() ) : ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-wp-parser-hook.php
r833 r834 41 41 <section class="meta">Used by TODO | Uses TODO | TODO Examples</section> 42 42 <?php endif; ?> 43 <hr/>44 <section class="explanation">45 <h2><?php _e( 'Explanation', 'wporg' ); ?></h2>46 </section>47 43 */ ?> 44 45 <?php 46 ob_start(); 47 the_content(); 48 $explanation = ob_get_clean(); 49 if ( $explanation ) : 50 ?> 51 <hr/> 52 <section class="explanation"> 53 <h2><?php _e( 'Explanation', 'wporg' ); ?></h2> 54 <?php the_content(); ?> 55 </section> 56 <?php endif; ?> 48 57 49 58 <?php if ( $params = get_params() ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.