Skip to:
Content

bbPress.org


Ignore:
Timestamp:
12/21/2012 08:18:08 PM (13 years ago)
Author:
johnjamesjacoby
Message:

RTL improvements for pagination arrows and breadcrumb order. See #2124.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/common/template-tags.php

    r4618 r4621  
    21532153           
    21542154            // Separator
    2155             'sep'             => __( '›', 'bbpress' ),
     2155            'sep'             => is_rtl() ? __( '‹', 'bbpress' ) : __( '›', 'bbpress' ),
    21562156            'pad_sep'         => 1,
    21572157            'sep_before'      => '<span class="bbp-breadcrumb-sep">',
     
    22732273        $sep    = apply_filters( 'bbp_breadcrumb_separator', $sep    );
    22742274        $crumbs = apply_filters( 'bbp_breadcrumbs',          $crumbs );
     2275
     2276        // If right-to-left, reverse the crumb order
     2277        if ( is_rtl() )
     2278            array_reverse( $crumbs );
    22752279
    22762280        // Build the trail
Note: See TracChangeset for help on using the changeset viewer.