1
ドイツのウェブサイトでは、ビジネス用の店でキャンバステーマを使用しています。 しかし、私の問題は、私の製品のページネーションでは、すべてがドイツ語に翻訳されていても、ボタンのテキストとして「前」と「次」が使用されていることです。Wordpress Woocommerceのページ設定の間違ったボタンのテキスト(キャンバスのテーマ)
キャンバスのテーマは、次のコードで管理-のfunctions.php使用しています:
$defaults = array(
'base' => esc_url_raw(add_query_arg('paged', '%#%')),
'format' => '',
'total' => $max_num_pages,
'current' => $current,
'prev_next' => true,
'prev_text' => __('← Previous', 'woothemes'), // Translate in WordPress. This is the default.
'next_text' => __('Next →', 'woothemes'), // Translate in WordPress. This is the default.
'show_all' => false,
'end_size' => 1,
'mid_size' => 1,
'add_fragment' => '',
'type' => 'plain',
'before' => '<div class="pagination woo-pagination">', // Begin woo_pagination() arguments.
'after' => '</div>',
'echo' => true,
'use_search_permastruct' => true
);
/* Allow themes/plugins to filter the default arguments. */
$defaults = apply_filters('woo_pagination_args_defaults', $defaults);
を私はこれを上書きしない(コメントはとにかく上書きしないと言う)もこれを翻訳するために私のページのバックエンドでオプションを見つけることもできません。
これらのボタンのテキストはどこで変更できますか? ありがとうございます。