Changeset 9736
- Timestamp:
- 04/16/2020 03:19:59 AM (5 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/front-page.php
r7956 r9736 19 19 20 20 $widget_args = array( 21 'before_title' => '<h 3class="widget-title">',22 'after_title' => '</h 3>',21 'before_title' => '<h2 class="widget-title">', 22 'after_title' => '</h2>', 23 23 ); 24 24 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-sidebar-advanced.php
r8656 r9736 11 11 12 12 $widget_args = array( 13 'before_title' => '<h 4class="widget-title">',14 'after_title' => '</h 4>',13 'before_title' => '<h2 class="widget-title">', 14 'after_title' => '</h2>', 15 15 ); 16 16 … … 29 29 30 30 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Contributors', array(), array( 31 'before_title' => '<h 4class="widget-title">',32 'after_title' => '</h 4>',31 'before_title' => '<h2 class="widget-title">', 32 'after_title' => '</h2>', 33 33 'before_widget' => '<div id="plugin-contributors" class="widget plugin-contributors">', 34 34 'after_widget' => '</div>', -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-sidebar.php
r8656 r9736 11 11 12 12 $widget_args = array( 13 'before_title' => '<h 3class="widget-title">',14 'after_title' => '</h 3>',13 'before_title' => '<h2 class="widget-title">', 14 'after_title' => '</h2>', 15 15 ); 16 16 … … 19 19 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Ratings', array(), $widget_args ); 20 20 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Contributors', array(), array( 21 'before_title' => '<h 4class="widget-title">',22 'after_title' => '</h 4>',21 'before_title' => '<h2 class="widget-title">', 22 'after_title' => '</h2>', 23 23 'before_widget' => '<div id="plugin-contributors" class="widget plugin-contributors">', 24 24 'after_widget' => '</div>', -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin.php
r9234 r9736 24 24 </div><div class="entry"> 25 25 <header class="entry-header"> 26 <?php the_title( '<h 2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?>26 <?php the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' ); ?> 27 27 </header><!-- .entry-header --> 28 28
Note: See TracChangeset
for help on using the changeset viewer.