Advertisement
Guest User

Untitled

a guest
Jan 13th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. $wp_customize->add_setting( 'xgen_body_font_weight_settings', array (
  2.         'default' => '400',
  3.         'type' => 'option',
  4.         'transport' => 'refresh',
  5.         'sanitize_callback' => 'esc_textarea',
  6.     ) );
  7.    
  8.     $wp_customize->add_control('xgen_body_font_weight', array(
  9.         'label' => __( 'Body Font Weight', 'xgen' ),
  10.         'section' => 'xgen_typo_section',
  11.         'settings' => 'xgen_body_font_weight_settings',
  12.         'type' => 'select',
  13.         'choices' => $fonts_weight,
  14.     ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement