Changeset 4063
- Timestamp:
- 09/14/2016 06:55:03 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-archive-topic.php
r1521 r4063 10 10 11 11 <div id="bbpress-forums"> 12 13 <?php bbp_breadcrumb(); ?> 12 14 13 15 <?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-search.php
r1521 r4063 10 10 11 11 <div id="bbpress-forums"> 12 13 <?php bbp_breadcrumb(); ?> 12 14 13 15 <?php bbp_set_query_name( 'bbp_search' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-forum.php
r1521 r4063 11 11 12 12 <div id="bbpress-forums"> 13 14 <?php bbp_breadcrumb(); ?> 13 15 14 16 <?php if ( post_password_required() ) : ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-topic.php
r2425 r4063 11 11 12 12 <div id="bbpress-forums"> 13 14 <?php bbp_breadcrumb(); ?> 13 15 14 16 <h2><?php bbp_topic_title(); ?></h2> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
r3996 r4063 2 2 3 3 <div id="bbpress-forums"> 4 5 <?php bbp_breadcrumb(); ?> 4 6 5 7 <?php endif; ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
r4062 r4063 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' ); … … 86 82 return $args; 87 83 } 84 add_filter( 'bbp_before_get_breadcrumb_parse_args', 'wporg_support_breadcrumb' ); 88 85 89 86 /** -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css
r4052 r4063 74 74 clear: both; 75 75 height: 0; 76 } 77 78 #bbpress-forums h2 { 79 clear: both; 76 80 } 77 81
Note: See TracChangeset
for help on using the changeset viewer.