Changeset 1104
- Timestamp:
- 01/08/2015 06:13:42 PM (10 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-reference.php
r1065 r1104 7 7 <h1><a href="<?php the_permalink() ?>"><?php echo get_signature(); ?></a></h1> 8 8 9 <section class=" description">9 <section class="summary"> 10 10 <?php echo get_summary(); ?> 11 11 </section> … … 13 13 <?php if ( is_single() ) : ?> 14 14 15 <section class=" long-description">16 <?php echo get_ long_description(); ?>15 <section class="description"> 16 <?php echo get_description(); ?> 17 17 </section> 18 18 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-wp-parser-hook.php
r1065 r1104 4 4 5 5 <h1><a href="<?php the_permalink() ?>"><?php echo get_signature(); ?></a></h1> 6 <section class=" description">6 <section class="summary"> 7 7 <?php echo get_summary(); ?> 8 8 </section> … … 10 10 <?php if ( is_single() ) : ?> 11 11 12 <section class=" long-description">13 <?php echo get_ long_description(); ?>12 <section class="description"> 13 <?php echo get_description(); ?> 14 14 </section> 15 15 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/template-tags.php
r1092 r1104 1050 1050 1051 1051 /** 1052 * Gets the longdescription.1053 * 1054 * The long description is stored in the 'wporg_parsed_content' metafield.1052 * Gets the description. 1053 * 1054 * The (long) description is stored in the 'post_content' get_post_field. 1055 1055 * 1056 1056 * @param null|WP_Post Optiona. The post. 1057 1057 * @return string 1058 1058 */ 1059 function get_ long_description( $post = null ) {1059 function get_description( $post = null ) { 1060 1060 $post = get_post( $post ); 1061 1061
Note: See TracChangeset
for help on using the changeset viewer.