2016-08-13 41 views
-1

我正在開發一個WordPress主題,我正在嘗試在WordPress定製器中添加一個選項,以使用戶能夠在包含在主題中的許多樣式文件之間進行選擇,我正在嘗試要做的事情非常簡單,一個選擇選項,允許用戶選擇風格1-樣式2-等...問題是,我沒有找到任何教程如何做到這一點,所有我找到的是如何自定義顏色,這不是我要找的。任何人都可以幫助或至少給我如何做到這一點的想法。在wordpress定製器中添加樣式文件選擇器

回答

0

我有發現這種解決方案我和它的工作原理preety罰款

function stlye_selector($wp_customize) { 
    $wp_customize->add_section(
     'stlye_files_selector', 
     array(
      'title' => 'stlye files selector', 
      'description' => 'you can set here your style file', 
      'priority' => 35, 
     ) 
    ); 
$wp_customize->add_setting(
    'colors', 
    array(
     'default' => 'blue', 
    ) 
); 

$wp_customize->add_control(
    'colors', 
    array(
     'type' => 'select', 
     'label' => 'your style', 
     'section' => 'stlye_files_selector', 
     'choices' => array(
      'blue' => 'blue', 
      'red' => 'red', 
     ), 
    ) 
); 
} 
add_action('customize_register', 'stlye_selector'); 

,並使用它,如果沒有顏色slected這將是藍色這只是添加到烏爾模板文件

<?php $stat= get_theme_mod('colors','blue'); ?> 

風格

相關問題