如何获取Wordpress自定义复选框的值

时间:2014-04-03 13:53:40

标签: wordpress checkbox customization

我无法弄清楚如何从WP自定义管理器中的复选框中获取值 - 无论是否选中它们。

这是functions.php中的代码:

$wp_customize->add_setting('social_facebook', array(
    'type'       => 'option',
));

$wp_customize->add_control(
    new WP_Customize_Control(
        $wp_customize,
        'social_facebook',
        array(
            'label'          => __( 'Facebook', 'theme_name' ),
            'section'        => 'social-icons',
            'settings'       => 'social_facebook',
            'type'           => 'checkbox',
        )
    )
);

这就是我试图获得价值的方式:

<?php
$facebook = get_theme_mod('social_facebook');
if ($facebook != ''){?>
<style>
    .facebook {display:inline!important;}
</style>
<?php }
?>

他们的复选框值是&#34;&#34; (空)或&#34; 1&#34;,因此系统注册它们的检查。但是,我不知道如何通过get_theme_mod方法获得价值。此外,他们没有任何名称值,所以我也无法通过常规方式获得价值。

5 个答案:

答案 0 :(得分:4)

$sticky_mod = get_theme_mod( 'wca_header_section_sticky' ) == '1' ? 'sticky' : '';

这是我的一个例子 - 如果选中该选项,它将回显&#34;粘性&#34;我的模板中的课程。

答案 1 :(得分:2)

如果设置&#39; my_theme_settings [social_facebook]&#39;复选框未选中:

<?php if( get_theme_mod( 'my_theme_settings[social_facebook]' ) == '') { ?>

 //if setting is unchecked content here will be shown

<?php } // end if ?>

有关完整文章,请参阅:http://themefoundation.com/wordpress-theme-customizer

答案 2 :(得分:1)

这是我的工作解决方案:

function theme_name_custom_settings( $wp_customize ) {

    $wp_customize->add_setting( 'social_facebook', array(
        'default'   => 1, // Set default value
        'sanitize_callback' => 'esc_attr', // Sanitize input
        )
    );

    $wp_customize->add_control( 
        new WP_Customize_Control(
            $wp_customize,
            'social_facebook', // Setting ID
            array(
                'label'     => __( 'Facebook', 'theme_name' ),
                'section'   => 'social_icons', // No hyphen
                'settings'  => 'social_facebook', // Setting ID
                'type'      => 'checkbox',
            )
        )
    );

}

add_action( 'customize_register', 'theme_name_custom_settings' );

然后像这样检查它的值(0或1):

if ( !get_theme_mod( 'social_facebook' ) ) { // false
    return;
}

// or

if ( get_theme_mod( 'social_facebook' ) == 1 ) { // true
    return;
}

答案 3 :(得分:0)

尝试使用并自定义它(在functions.php中测试:

function mytheme_customize_register( $wp_customize ){
  $wp_customize->add_section(
  // ID
  'layout_section',
  // Arguments array
  array(
    'title' => __( 'Layout', 'my_theme' ),
    'capability' => 'edit_theme_options',
    'description' => __( 'social needs ;)', 'my_theme' )
  )
 );

 $wp_customize->add_setting(
  // ID
  'my_theme_settings[social_facebook]',
  // Arguments array
  array('type' => 'option')
  );

 $wp_customize->add_control(
  // ID
  'layout_control',
array(
  'type' => 'checkbox',
  'label' => __( 'Facebook', 'my_theme' ),
  'section' => 'layout_section',
  // This last one must match setting ID from above
  'settings' => 'my_theme_settings[social_facebook]'
 )
 );
}

add_action( 'customize_register', 'mytheme_customize_register' );

阅读模板

$my_theme_settings = get_option( 'my_theme_settings' );
echo $my_theme_settings['social_facebook'];

答案 4 :(得分:0)

问题出在WP_Customize_Setting :: value()中,它希望返回false 取消选中复选框(或取消选中复选框),而某些程序将返回“0”或“”。

在我的情况下,我必须扩展WP_Customize_Setting并覆盖value()方法以强制返回布尔值。

<?php
class ForceBooleanSettings
extends WP_Customize_Setting {

  public function value() {
    return (bool) parent::value();
  }
}

// Example on using this extend class
$customizer->add_setting(new ForceBooleanSettings(
   $customizer, 
   'myuniquekey', 
   array(
    'default' => false,
    'transport' => 'refresh',
)));

?>