Skip to content

Instantly share code, notes, and snippets.

View celloexpressions's full-sized avatar

Nick Halsey celloexpressions

View GitHub Profile
@celloexpressions
celloexpressions / twentyseventeen-colors-only.css
Last active April 15, 2018 16:12
Twenty Seventeen Colors
/**
* Twenty Seventeen: Color Patterns
*
* Direct reduction of style.css - all non-color-related properties have been removed, but no selectors have been combined or reordered.
*/
fieldset {
border-color: #c0c0c0;
@celloexpressions
celloexpressions / header-video.php
Last active September 9, 2016 23:52
Custom Header Video
// In inc/customize.php:
function twentyseventeen_customize_register( $wp_customize ) {
// Adjust the header image section to also include video.
$wp_customize->get_section( 'header_image' )->title = __( 'Header', 'twentyseventeen' );
$wp_customize->get_section( 'header_image' )->active_callback = 'is_front_page';
$wp_customize->add_setting( 'header_video', array(
'sanitize_callback' => 'absint', // Attachment id is saved.
'transport' => 'postMessage',