PHP code example of micropackage / internationalization
1. Go to this page and download the library: Download micropackage/internationalization library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
micropackage / internationalization example snippets
use Micropackage\Internationalization\Internationalization;
add_action( 'init', [ new Internationalization( $textdomain, $full_language_dir_path ), 'load_translation' ] );
Micropackage\DocHooks\Helper::hook( new Internationalization( $textdomain, $full_language_dir_path ) );
$theme_language_dir = get_template_directory() . '/languages';
$plugin_language_dir = plugin_dir_path( __FILE__ );