'head_menu', ) ); /* Короткий пример для использования Theme_Customization_API http://casepress.org/kb/web/nastrojki-temy-wordpress-kak-dobavit-svoi-polya/ */ /** * Добавляет страницу настройки темы в админку Вордпресса */ function mytheme_customize_register( $wp_customize ) { /* Добавляем секцию в настройки темы */ $wp_customize->add_section( // ID 'data_hashtag_section', // Arguments array array( 'title' => 'Хештеги', 'capability' => 'edit_theme_options', 'description' => "Налаштування додаткової інформації" ) ); $wp_customize->add_setting( // ID 'iwater_tophashtag', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'site_tophashtag_control', // Arguments array array( 'type' => 'text', 'label' => "Хештег моб. версії", 'section' => 'data_hashtag_section', 'settings' => 'iwater_tophashtag' ) ); $wp_customize->add_section( // ID 'data_site_section', // Arguments array array( 'title' => 'Контакти', 'capability' => 'edit_theme_options', 'description' => "Налаштування контактної інформації, тощо" ) ); /* Добавляем поля контактных данных */ $wp_customize->add_setting( // ID 'iwater_yuraddress', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'site_address1_control', // Arguments array array( 'type' => 'text', 'label' => "Адреса", 'section' => 'data_site_section', 'settings' => 'iwater_yuraddress' ) ); $wp_customize->add_setting( // ID 'iwater_telephone', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'site_telephone_control', // Arguments array array( 'type' => 'text', 'label' => "Телефон", 'section' => 'data_site_section', // This last one must match setting ID from above 'settings' => 'iwater_telephone' ) ); $wp_customize->add_setting( // ID 'iwater_inst', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'iwater_inst_link', // Arguments array array( 'type' => 'text', 'label' => "Instagram урл", 'section' => 'data_site_section', // This last one must match setting ID from above 'settings' => 'iwater_inst' ) ); $wp_customize->add_setting( // ID 'iwater_fb', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'iwater_fb_link', // Arguments array array( 'type' => 'text', 'label' => "Facebook урл", 'section' => 'data_site_section', // This last one must match setting ID from above 'settings' => 'iwater_fb' ) ); $wp_customize->add_setting( // ID 'iwater_tg', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'site_tg_link', // Arguments array array( 'type' => 'text', 'label' => "TG урл", 'section' => 'data_site_section', // This last one must match setting ID from above 'settings' => 'iwater_tg' ) ); $wp_customize->add_setting( // ID 'iwater_viber', // Arguments array array( 'default' => '', 'type' => 'option' ) ); $wp_customize->add_control( // ID 'site_viber_link', // Arguments array array( 'type' => 'text', 'label' => "Viber урл", 'section' => 'data_site_section', // This last one must match setting ID from above 'settings' => 'iwater_viber' ) ); } add_action( 'customize_register', 'mytheme_customize_register' ); ?>