diff --git wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php
index 3cc93c93b..5d579a3de 100644
|
|
|
class Meta extends \WP_Widget { |
| 33 | 33 | echo $args['before_widget']; |
| 34 | 34 | ?> |
| 35 | 35 | |
| 36 | | <h3 class="screen-reader-text"><?php echo apply_filters( 'widget_title', empty( $instance['title'] ) ? __( 'Meta', 'wporg-plugins' ) : $instance['title'], $instance, $this->id_base ); ?></h3> |
| | 36 | <h2 class="screen-reader-text"><?php echo apply_filters( 'widget_title', empty( $instance['title'] ) ? __( 'Meta', 'wporg-plugins' ) : $instance['title'], $instance, $this->id_base ); ?></h2> |
| 37 | 37 | |
| 38 | 38 | <ul> |
| 39 | 39 | <?php if ( $built_for = get_the_term_list( $post->ID, 'plugin_built_for', '', ', ' ) ) : ?> |
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-sidebar-advanced.php wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-sidebar-advanced.php
index 1b30dc89d..75daee005 100644
|
|
|
|
| 10 | 10 | namespace WordPressdotorg\Plugin_Directory\Theme; |
| 11 | 11 | |
| 12 | 12 | $widget_args = array( |
| 13 | | 'before_title' => '<h4 class="widget-title">', |
| 14 | | 'after_title' => '</h4>', |
| | 13 | 'before_title' => '<h2 class="widget-title">', |
| | 14 | 'after_title' => '</h2>', |
| 15 | 15 | ); |
| 16 | 16 | |
| 17 | 17 | the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Adopt_Me', array(), $widget_args ); |
| … |
… |
if ( current_user_can( 'plugin_admin_view', $post ) ) { |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Contributors', array(), array( |
| 31 | | 'before_title' => '<h4 class="widget-title">', |
| 32 | | 'after_title' => '</h4>', |
| | 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>', |
| 35 | 35 | ) ); |
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-sidebar.php wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-sidebar.php
index ee54abe58..feb92ccdc 100644
|
|
|
|
| 10 | 10 | namespace WordPressdotorg\Plugin_Directory\Theme; |
| 11 | 11 | |
| 12 | 12 | $widget_args = array( |
| 13 | | 'before_title' => '<h3 class="widget-title">', |
| 14 | | 'after_title' => '</h3>', |
| | 13 | 'before_title' => '<h2 class="widget-title">', |
| | 14 | 'after_title' => '</h2>', |
| 15 | 15 | ); |
| 16 | 16 | |
| 17 | 17 | the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Adopt_Me', array(), $widget_args ); |
| 18 | 18 | the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Meta', array(), $widget_args ); |
| 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' => '<h4 class="widget-title">', |
| 22 | | 'after_title' => '</h4>', |
| | 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>', |
| 25 | 25 | ) ); |