Changeset 3420 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-single.php
- Timestamp:
- 06/17/2016 08:27:41 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-single.php
r3412 r3420 45 45 <?php 46 46 $plugin_sections = Template::get_plugin_sections(); 47 47 48 foreach ( array( 'description', 'screenshots', 'faq', 'reviews', 'changelog', 'developers' ) as $section_slug ) : 48 if ( ! array_key_exists( $section_slug, $content ) || in_array( $section_slug, array( 'installation', 'other_notes' ) ) ) : 49 $section_content = trim( apply_filters( 'the_content', $content[ $section_slug ], $section_slug ) ); 50 51 if ( ! array_key_exists( $section_slug, $content ) || in_array( $section_slug, array( 'installation', 'other_notes' ) ) || empty( $section_content ) ) : 49 52 continue; 50 53 endif; 54 51 55 $section = wp_list_filter( $plugin_sections, array( 'slug' => $section_slug ) ); 52 56 $section = array_pop( $section ); … … 55 59 <div id="<?php echo esc_attr( $section_slug ); ?>" class="read-more" aria-expanded="false"> 56 60 <h2><?php echo $section['title']; ?></h2> 57 <?php echo apply_filters( 'the_content', $content[ $section_slug ], $section_slug ); ?>61 <?php echo $section_content; ?> 58 62 </div> 59 63 <button type="button" class="button-link section-toggle" aria-controls="<?php echo esc_attr( $section_slug ); ?>"><?php _e( 'Read more', 'wporg-plugins' ); ?></button>
Note: See TracChangeset
for help on using the changeset viewer.