'000000', 'border' => '222222', 'text' => '999999', 'link' => 'ffffff', 'url' => 'ffffff', ); } else { $themecolors = array( 'bg' => 'ffffff', 'border' => '222222', 'text' => '666666', 'link' => '000000', 'url' => '999999', ); } } } add_action( 'after_setup_theme', 'structure_theme_colors' ); /** * Adds support for WP.com print styles */ function structure_print_styles() { add_theme_support( 'print-style' ); } add_action( 'after_setup_theme', 'structure_print_styles' ); //WordPress.com specific styles function structure_wpcom_styles() { wp_enqueue_style( 'structure-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', '080113' ); } add_action( 'wp_enqueue_scripts', 'structure_wpcom_styles' );