Changeset 3204 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-single.php
- Timestamp:
- 05/20/2016 10:10:58 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
r3193 r3204 13 13 14 14 $content = call_user_func( array( Plugin_Directory::instance(), 'split_post_content_into_pages' ), get_the_content() ); 15 16 $widget_args = array( 17 'before_title' => '<h4 class="widget-title">', 18 'after_title' => '</h4>', 19 ); 15 20 16 21 ?><article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> … … 48 53 49 54 <div class="entry-meta"> 50 <link itemprop="applicationCategory" href="http://schema.org/OtherApplication" /> 51 <span itemprop="offers" itemscope itemtype="http://schema.org/Offer"> 52 <meta itemprop="price" content="0.00" /> 53 <meta itemprop="priceCurrency" content="USD" /> 54 <span itemprop="seller" itemscope itemtype="http://schema.org/Organization"> 55 <span itemprop="name" content="WordPress.org"></span> 56 </span> 57 </span> 58 59 <?php the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Ratings' ); ?> 60 <?php the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Support' ); ?> 61 <?php the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Meta' ); ?> 55 <?php 56 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Ratings', array(), $widget_args ); 57 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Support', array(), $widget_args ); 58 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Meta', array(), $widget_args ); 59 ?> 62 60 63 61 </div><!-- .entry-meta -->
Note: See TracChangeset
for help on using the changeset viewer.