mirror of
git://develop.git.wordpress.org/
synced 2025-02-24 00:24:52 +01:00
11 lines
243 B
PHP
11 lines
243 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Dummy theme.
|
||
|
*/
|
||
|
|
||
|
load_theme_textdomain( 'custom-internationalized-theme', get_template_directory() . '/languages' );
|
||
|
|
||
|
function custom_i18n_theme_test() {
|
||
|
return __( 'This is a dummy theme', 'custom-internationalized-theme' );
|
||
|
}
|