Changeset 2612
- Timestamp:
- 02/25/2016 05:05:50 AM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/plugin-card.php
r2555 r2612 3 3 4 4 <a href="<?php the_permalink(); ?>" class="plugin-icon"> 5 <?php echo W Porg_Plugin_Directory_Template::get_plugin_icon( $post->post_name, 'html' ); ?>5 <?php echo WordPressdotorg\Plugin_Directory\Template::get_plugin_icon( $post->post_name, 'html' ); ?> 6 6 </a> 7 7 <div class="name column-name"> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/single-plugin.php
r2555 r2612 2 2 the_post(); 3 3 get_header(); 4 $plugin_banners = W Porg_Plugin_Directory_Template::get_plugin_banner( $post );4 $plugin_banners = WordPressdotorg\Plugin_Directory\Template::get_plugin_banner( $post ); 5 5 6 6 ?> … … 46 46 <ul id="sections"> 47 47 <?php 48 foreach ( W Porg_Plugin_Directory_Template::get_plugin_sections() as $section ) {48 foreach ( WordPressdotorg\Plugin_Directory\Template::get_plugin_sections() as $section ) { 49 49 $current = ( $section['slug'] == get_query_var( 'content_page' ) || ( 'description' == $section['slug'] && ! get_query_var( 'content_page' ) ) ); 50 50 printf( -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-tags.php
r2502 r2612 35 35 36 36 function worg_plugins_template_active_installs( $full = true ) { 37 $count = W Porg_Plugin_Directory_Template::get_active_installs_count( get_post()->post_name );37 $count = WordPressdotorg\Plugin_Directory\Template::get_active_installs_count( get_post()->post_name ); 38 38 39 39 if ( ! $count ) { -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/view-intro.php
r2502 r2612 6 6 '<p class="intro">' . __( 'Plugins extend and expand the functionality of WordPress. %1$s plugins with %2$s total downloads are at your fingertips.', 'wporg-plugins' ) . '</p>', 7 7 '<strong>' . number_format_i18n( wp_count_posts( 'plugin' )->publish ) . '</strong>', 8 '<strong>' . number_format_i18n( W Porg_Plugin_Directory_Template::get_total_downloads() ) . '</strong>'8 '<strong>' . number_format_i18n( WordPressdotorg\Plugin_Directory\Template::get_total_downloads() ) . '</strong>' 9 9 ); 10 10 }
Note: See TracChangeset
for help on using the changeset viewer.