Changeset 5361 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-developers.php
- Timestamp:
- 04/18/2017 09:14:59 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-developers.php
r5325 r5361 18 18 $slug = $post->post_name; 19 19 $title = get_the_title( $post ); 20 $output = '< p>' . sprintf( __( '%s is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ), $title ) . '</p>';20 $output = '<div class="plugin-contributors"><p>' . sprintf( __( '%s is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ), $title ) . '</p>'; 21 21 22 22 ob_start(); … … 29 29 30 30 $output .= ob_get_clean(); 31 $output .= '</div>'; 31 32 32 33 $locales = Plugin_I18n::instance()->get_locales(); 33 $output .= '< p>';34 $output .= '<div class="plugin-development"><p>'; 34 35 35 36 if ( ! empty( $locales ) ) { … … 83 84 ) . '</p>'; 84 85 } 85 86 $output .= '</div>'; 86 87 return $output; 87 88 }
Note: See TracChangeset
for help on using the changeset viewer.