Ticket #1974: meta-1974.2.patch
File meta-1974.2.patch, 4.5 KB (added by , 8 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-archive-topic.php
10 10 11 11 <div id="bbpress-forums"> 12 12 13 <?php bbp_breadcrumb(); ?> 14 13 15 <?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?> 14 16 15 17 <?php do_action( 'bbp_template_before_topics_index' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-search.php
10 10 11 11 <div id="bbpress-forums"> 12 12 13 <?php bbp_breadcrumb(); ?> 14 13 15 <?php bbp_set_query_name( 'bbp_search' ); ?> 14 16 15 17 <?php do_action( 'bbp_template_before_search' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-forum.php
11 11 12 12 <div id="bbpress-forums"> 13 13 14 <?php bbp_breadcrumb(); ?> 15 14 16 <?php if ( post_password_required() ) : ?> 15 17 16 18 <?php bbp_get_template_part( 'form', 'protected' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-topic.php
11 11 12 12 <div id="bbpress-forums"> 13 13 14 <?php bbp_breadcrumb(); ?> 15 14 16 <h2><?php bbp_topic_title(); ?></h2> 15 17 16 18 <?php do_action( 'bbp_template_before_single_topic' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
2 2 3 3 <div id="bbpress-forums"> 4 4 5 <?php bbp_breadcrumb(); ?> 6 5 7 <?php endif; ?> 6 8 7 9 <?php if ( bbp_current_user_can_access_create_topic_form() ) : ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
52 52 /** 53 53 * Customized breadcrumb arguments 54 54 * Breadcrumb Root Text: "WordPress Support" 55 * Custom sep erator`«` and `»`55 * Custom separator: `«` and `»` 56 56 * 57 57 * @uses bbp_before_get_breadcrumb_parse_args() To parse the custom arguments 58 58 */ 59 59 function wporg_support_breadcrumb() { 60 // HTML61 $args['before'] = '';62 $args['after'] = '';63 64 60 // Separator 65 61 $args['sep'] = is_rtl() ? __( '«', 'wporg-forums' ) : __( '»', 'wporg-forums' ); 66 62 $args['pad_sep'] = 1; … … 85 81 86 82 return $args; 87 83 } 84 add_filter( 'bbp_before_get_breadcrumb_parse_args', 'wporg_support_breadcrumb' ); 88 85 89 86 /** 90 87 * Register these bbPress views: -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css
75 75 height: 0; 76 76 } 77 77 78 #bbpress-forums h2 { 79 clear: both; 80 } 81 78 82 /** 79 83 * 4.0 Overrides 80 84 */