Genesis Child Theme Constants
$image = CHILD_IMAGES_URL . '/image.png';
add_action( 'init', 'wpdevco_genesis_constants' );
function wpdevco_genesis_constants() {
$theme = wp_get_theme();
define( 'CHILD_THEME_NAME', $theme->Name );
define( 'CHILD_THEME_URL', $theme->get( 'ThemeURI' ) );
define( 'CHILD_THEME_VERSION', $theme->Version );
define( 'CHILD_IMAGES_URL', CHILD_URL . '/images' );
define( 'CHILD_JS_URL', CHILD_URL . '/js' );
define( 'CHILD_FONTS_URL', CHILD_URL . '/fonts' );
define( 'CHILD_CSS_URL', CHILD_URL . '/css' );
}