Skip to content

Instantly share code, notes, and snippets.

View lai32290's full-sized avatar

Lai Xuancheng lai32290

View GitHub Profile
@lai32290
lai32290 / WordPress Theme Customizer Sample.php
Created September 3, 2017 13:57 — forked from Abban/WordPress Theme Customizer Sample.php
WordPress Theme Customizer Sample
<?php
function themename_customize_register($wp_customize){
$wp_customize->add_section('themename_color_scheme', array(
'title' => __('Color Scheme', 'themename'),
'priority' => 120,
));
// =============================