芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/www/wp-content/plugins/redux-framework/redux-core/inc/classes/class-redux-i18n.php
core(); /** * Locale for text domain * filter 'redux/textdomain/basepath/{opt_name}' */ // phpcs:ignore WordPress.NamingConventions.ValidHookName $locale = apply_filters( 'redux/locale', get_locale(), 'redux-framework' ); $mofile = $domain . '-' . $locale . '.mo'; // phpcs:ignore WordPress.NamingConventions.ValidHookName $basepath = apply_filters( "redux/textdomain/basepath/{$core->args['opt_name']}", Redux_Core::$dir ); $loaded = load_textdomain( $domain, $basepath . 'languages/' . $mofile ); if ( ! $loaded ) { $mofile = WP_LANG_DIR . '/plugins/' . $mofile; load_textdomain( $domain, $mofile ); } } } }