Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Setup My Child Theme's textdomain.
- *
- * Declare textdomain for this child theme.
- * Translations can be filed in the /languages/ directory.
- */
- function my_child_theme_setup() {
- load_child_theme_textdomain( 'child_theme_cosily', get_stylesheet_directory() . '/languages' );
- }
- add_action( 'after_setup_theme', 'my_child_theme_setup' );
Advertisement
Add Comment
Please, Sign In to add comment