Changeset 4621 for trunk/includes/common/template-tags.php
- Timestamp:
- 12/21/2012 08:18:08 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/common/template-tags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/template-tags.php
r4618 r4621 2153 2153 2154 2154 // Separator 2155 'sep' => __( '›', 'bbpress' ),2155 'sep' => is_rtl() ? __( '‹', 'bbpress' ) : __( '›', 'bbpress' ), 2156 2156 'pad_sep' => 1, 2157 2157 'sep_before' => '<span class="bbp-breadcrumb-sep">', … … 2273 2273 $sep = apply_filters( 'bbp_breadcrumb_separator', $sep ); 2274 2274 $crumbs = apply_filters( 'bbp_breadcrumbs', $crumbs ); 2275 2276 // If right-to-left, reverse the crumb order 2277 if ( is_rtl() ) 2278 array_reverse( $crumbs ); 2275 2279 2276 2280 // Build the trail
Note: See TracChangeset
for help on using the changeset viewer.