rhandom

child theme text domain

Dec 13th, 2013
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Setup My Child Theme's textdomain.
  4.  *
  5.  * Declare textdomain for this child theme.
  6.  * Translations can be filed in the /languages/ directory.
  7.  */
  8. function my_child_theme_setup() {
  9.     load_child_theme_textdomain( 'child_theme_cosily', get_stylesheet_directory() . '/languages' );
  10. }
  11. add_action( 'after_setup_theme', 'my_child_theme_setup' );
Advertisement
Add Comment
Please, Sign In to add comment