Update single-product-reviews.php

fix for RTL direction
This commit is contained in:
DediData 2020-12-09 13:21:54 +03:30 committed by GitHub
parent 7f4ad80cbd
commit a8834ee84c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ if ( ! comments_open() ) {
apply_filters( apply_filters(
'woocommerce_comment_pagination_args', 'woocommerce_comment_pagination_args',
array( array(
'prev_text' => '←', 'prev_text' => is_rtl() ? '→' : '←',
'next_text' => '→', 'next_text' => is_rtl() ? '←' : '→',
'type' => 'list', 'type' => 'list',
) )
) )