Skip to content

Instantly share code, notes, and snippets.

@unix7
Created February 14, 2012 08:28
Show Gist options
  • Save unix7/1824802 to your computer and use it in GitHub Desktop.
Save unix7/1824802 to your computer and use it in GitHub Desktop.
Genesis - Add Print Stylesheet
/** Add print stylesheet */
add_action( 'wp_print_styles', 'autobahn_add_print_stylesheet' );
function autobahn_add_print_stylesheet() {
wp_enqueue_style( 'autobahn_print', get_stylesheet_directory_uri() . '/print.css', array(), CHILD_THEME_VERSION, 'print' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment