9 lines
128 B
PHP
9 lines
128 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Dummy theme.
|
||
|
*/
|
||
|
|
||
|
function i18n_theme_test() {
|
||
|
return __( 'This is a dummy theme', 'internationalized-theme' );
|
||
|
}
|