diff -Naur wordpress/wp-content/wordpress-meta/wordpress.org/public_html/wp-content/themes/pub/wporg-main/front-page.php wordpress/wp-content/wordpress-meta/wordpress.org/public_html/wp-content/themes/pub/wporg-main/front-page.php
|
|
|
100 | 100 | </ul> |
101 | 101 | <p> |
102 | 102 | <?php |
103 | | /* translators: %s: Link to Plugin Directory. */ |
104 | | printf( __( 'Extend WordPress with over 45,000 plugins to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%s">much more</a>.', 'wporg' ), esc_url( home_url( '/plugins/' ) ) ); |
| 103 | $plugin_count = wp_count_posts( 'plugin' )->publish; |
| 104 | printf( |
| 105 | /* Translators: Total number of plugins. */ |
| 106 | _n( 'Extend WordPress with over %1s plugin to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%2s">much more</a>', 'Extend WordPress with over %1s plugins to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="%2s">much more</a>', $plugin_count, esc_url( home_url( '/plugins/' ) ), 'wporg' ), |
| 107 | esc_html( number_format_i18n( $plugin_count ) ), |
| 108 | esc_url( home_url( '/plugins/' ) ) |
| 109 | ); |
105 | 110 | ?> |
106 | 111 | </p> |
107 | 112 | </section> |