Skip to content

Instantly share code, notes, and snippets.

@anatol06
anatol06 / front-page.php
Last active May 7, 2018 18:32
Insert post thumbnails
<?php if(has_post_thumbnail()) : ?>
<?php the_post_thumbnail(); ?>
<?php endif; ?>
@anatol06
anatol06 / customizer.php
Created May 8, 2018 10:18
Theme customize register for customize.php file - Empty
function mytheme_customize_register( $wp_customize ) {
//All our sections, settings, and controls will be added here
}
add_action( 'customize_register', 'mytheme_customize_register' );
@anatol06
anatol06 / customizer.js
Last active May 9, 2018 15:25
Customizer with basic controls sample
// Customizer with basic controls sample
function themename_customize_register($wp_customize){
$wp_customize->add_section('themename_color_scheme', array(
'title' => __('Color Scheme', 'themename'),
'description' => '',
'priority' => 120,
));
// =============================