Skip to content

Instantly share code, notes, and snippets.

@bizzthemes
Last active January 2, 2016 19:29
Show Gist options
  • Save bizzthemes/8351104 to your computer and use it in GitHub Desktop.
Save bizzthemes/8351104 to your computer and use it in GitHub Desktop.
Child themes functions.php header
<?php
//* This file calls the init.php file inside parent Bizznis theme (do not remove)
load_template( get_template_directory() . '/lib/init.php' );
//* Child theme (do not remove)
define( 'CHILD_THEME_NAME', __( 'Bizznis Child Theme', 'bizznis-child' ) );
define( 'CHILD_THEME_URL', 'https://github.com/bizzthemes/bizznis-child/' );
define( 'CHILD_THEME_VERSION', '1.0' );
//* Set Localization (do not remove)
load_child_theme_textdomain( 'bizznis-child', apply_filters( 'child_theme_textdomain', get_stylesheet_directory() . '/languages', 'bizznis-child' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment