Есть проблема.
Установил плагин Carbon Fields 3 с помощью
composer, он работает но на английском.
В папке с плагином есть русский язык, но не понимаю как его включить...
Плагин находится по адресу ../themes/nes/vendor/htmlburger/carbon-fields
Подключается так:
function crb_load() {
require_once( 'vendor/autoload.php' );
\Carbon_Fields\Carbon_Fields::boot();
}
add_action( 'after_setup_theme', 'crb_load' );
function crb_require_files() {
require( trailingslashit(get_template_directory()) . '/inc/crb_theme_options.php' );
require( trailingslashit(get_template_directory()) . '/inc/crb_page_meta.php' );
require( trailingslashit(get_template_directory()) . '/inc/crb_post_meta.php' );
// require( trailingslashit(get_template_directory()) . '/inc/crb_term_meta.php' );
}
add_action( 'carbon_fields_register_fields', 'crb_require_files' );