Changeset 3436
- Timestamp:
- 06/18/2016 02:02:06 PM (9 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
r3431 r3436 47 47 48 48 foreach ( array( 'description', 'screenshots', 'faq', 'reviews', 'changelog', 'developers' ) as $section_slug ) : 49 if ( ! array_key_exists( $section_slug, $content ) || in_array( $section_slug, array( 'installation', 'other_notes' ) ) ) : 50 continue; 51 endif; 52 49 53 $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 ) ) : 54 if ( empty( $section_content ) ) : 52 55 continue; 53 56 endif;
Note: See TracChangeset
for help on using the changeset viewer.