Making WordPress.org


Ignore:
Timestamp:
12/16/2024 08:01:59 PM (15 months ago)
Author:
johnjamesjacoby
Message:

BuddyPress.org: theme tweaks

Part of bb-base theme changes

See: https://buddypress.trac.wordpress.org/ticket/9262

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/buddypress.org/public_html/wp-content/themes/buddypress-org/sidebar.php

    r14167 r14285  
    2323
    2424            <div>
    25                 <h3><?php _e( 'Forum Info', 'bporg' ); ?></h3>
     25                <h2><?php _e( 'Forum Info', 'bporg' ); ?></h2>
    2626                <ul class="forum-info">
    2727                    <?php bb_base_single_forum_description(); ?>
     
    3232
    3333            <div>
    34                 <h3><?php _e( 'Forum Feeds', 'bporg' ); ?></h3>
     34                <h2><?php _e( 'Forum Feeds', 'bporg' ); ?></h2>
    3535                <ul>
    3636                    <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/"><?php _e( 'Recent Posts', 'bporg' ); ?></a></li>
     
    4242
    4343            <div>
    44                 <h3><?php _e( 'Topic Info', 'bporg' ); ?></h3>
     44                <h2><?php _e( 'Topic Info', 'bporg' ); ?></h2>
    4545                <ul class="topic-info">
    4646                    <?php bb_base_single_topic_description(); ?>
     
    5050            <div>
    5151                <?php bbp_topic_tag_list( 0, array(
    52                     'before' => '<h3>' . __( 'Topic Tags', 'bporg' ) . '</h3><ul class="topic-tags"><li>',
     52                    'before' => '<h2>' . __( 'Topic Tags', 'bporg' ) . '</h2><ul class="topic-tags"><li>',
    5353                    'after'  => '</li></ul>',
    5454                    'sep'    => '</li><li>',
     
    6363                    <?php bbp_topic_admin_links( array (
    6464                        'id'     => bbp_get_topic_id(),
    65                         'before' => '<h3>' . __( 'Topic Admin', 'bporg' ) . '</h3><ul class="topic-admin-links"><li>',
     65                        'before' => '<h2>' . __( 'Topic Admin', 'bporg' ) . '</h2><ul class="topic-admin-links"><li>',
    6666                        'after'  => '</li></ul>',
    6767                        'sep'    => '</li><li>',
     
    7575
    7676            <div>
    77                 <h3><?php _e( 'Forums', 'bporg' ); ?></h3>
     77                <h2><?php _e( 'Forums', 'bporg' ); ?></h2>
    7878                <?php echo do_shortcode( '[bbp-forum-index]' ); ?>
    7979            </div>
     
    8181
    8282            <div>
    83                 <h3><?php _e( 'Views', 'bporg' ); ?></h3>
     83                <h2><?php _e( 'Views', 'bporg' ); ?></h2>
    8484                <ul>
    8585
     
    9494
    9595            <div>
    96                 <h3><?php _e( 'Feeds', 'bporg' ); ?></h3>
     96                <h2><?php _e( 'Feeds', 'bporg' ); ?></h2>
    9797                <ul>
    9898                    <li><a class="feed" href="<?php bbp_forums_url(); ?>feed/"><?php _e( 'All Recent Posts', 'bporg' ); ?></a></li>
     
    101101            </div>
    102102
    103             <div>
    104                 <h3><?php _e( 'Tags', 'bporg' ); ?></h3>
     103            <div class="bbp-topic-tag-cloud">
     104                <h2><?php _e( 'Tags', 'bporg' ); ?></h2>
    105105                <?php echo do_shortcode( '[bbp-topic-tags]' ); ?>
    106106            </div>
     
    110110    <?php elseif ( is_front_page() || is_404() ) : ?>
    111111
    112         <div class="feature">
    113             <h3><?php _e( 'Theme Development', 'bporg' ); ?></h3>
     112        <div>
     113            <h2><?php _e( 'Theme Development', 'bporg' ); ?></h2>
    114114            <p><a href="https://www.packtpub.com/web-development/buddypress-theme-development"><img width="225" alt="<?php esc_attr_e( 'BuddyPress Theme Development. A book by Tammie Lister', 'bporg' ); ?>" src="<?php echo get_stylesheet_directory_uri(); ?>/images/buddypress-packt.jpg"/></a></p>
    115115            <p class="book-description"><?php _e( 'An in-depth guide to designing, developing, and testing your very own custom BuddyPress theme.', 'bporg' ); ?></p>
     
    121121
    122122        <div>
    123             <h3><?php _e( 'Legacy', 'bporg' ); ?></h3>
     123            <h2><?php _e( 'Legacy', 'bporg' ); ?></h2>
    124124            <ul>
    125125                <li><a href="https://buddypress.org/support/forum/plugin-forums/"><?php _e( 'Legacy Plugin Forums', 'bporg' ); ?></a></li>
     
    130130
    131131        <div>
    132             <h3><?php _e( 'Categories', 'bporg' ); ?></h3>
     132            <h2><?php _e( 'Categories', 'bporg' ); ?></h2>
    133133            <ul>
    134134                <?php wp_list_categories( array( 'title_li' => false ) ); ?>
     
    137137
    138138        <div>
    139             <h3><?php _e( 'Tags', 'bporg' ); ?></h3>
     139            <h2><?php _e( 'Tags', 'bporg' ); ?></h2>
    140140            <?php wp_tag_cloud(); ?>
    141141        </div>
Note: See TracChangeset for help on using the changeset viewer.