Skip to content

Instantly share code, notes, and snippets.

View imrantushar's full-sized avatar
🏠
Working from home

Tushar Imran imrantushar

🏠
Working from home
View GitHub Profile
@imrantushar
imrantushar / latestposts-control.php
Created December 2, 2017 11:41 — forked from danielpataki/latestposts-control.php
Custom Theme Customization Controls
$wp_customize->add_control(
new WP_Customize_Latest_Post_Control(
$wp_customize,
'featpost_control',
array(
'label' => __( 'Select A Featured Post', 'mytheme' ),
'section' => 'header_section',
'settings' => 'featured_post',
'post_type' => 'page'
)