filmov
tv
Wordpress Theme Options Development for beginner (Part 9) Introduction of Wp Customize Color Control

Показать описание
In this video i have explained about WP_Customize_Color_Control of wp.
#WordpressTutorialsPoint
#WordpressLearnersHub
#WordpressCustomizations
#LearnWordpressStepbyStep
#WordpressBySanjay
Steps to Add WP_Customize_Color_Control,
====================
1. Register Section
2. Register Setting
3. Add Control
4. Show on Website
1. Register Section,
====================
By the help of 'add_section' we can add our section to wp customize option
$wp_customize-[]add_section("custom_theme_section_area",array(
"title"=[]"Custom Theme Settings"
));
2. Register Setting
====================
By using 'add_setting' we can add our settings to created section,
$wp_customize-[]add_setting("custom_theme_color_text_setting");
3. Add Control
====================
To add a control in given section and settings we should use 'add_control'
$wp_customize-[]add_control(new WP_Customize_Color_Control(
$wp_customize,
"text_color",
array(
"label" =[] "Select Color for Text",
"section" =[] "custom_theme_section_area",
"settings" =[] "custom_theme_color_text_setting"
)
));
4. Show on Website
===============
To show our control setting to website we have to use wp method "get_theme_mod('custom_theme_color_setting')"
where 'custom_theme_color_setting' is the setting_id
Important Videos to watch before this video session to make it clear,
===============
SOCIAL :
===============
RECOMMENDATION:
===============
1. Some knowledge of PHP, HTML for this video series
Also you can learn Wordpress Custom
===============
Important Videos from Plugin Development Series
===============
Tags
===============
online web tutor,
profotech solutions,
wordpress theme options development from scratch in hindi,
wordpress theme options development from scratch in easy steps,
wordpress theme options development,
wordpress theme options development in easy steps,
theme options development in wordpress from scratch,
theme options development in wordpress by online web tutor,
theme options development in wordpress tutorials from scratch in hindi,
theme options development tutorials in hindi,
owt tuts,
online web tutorials,
Thanks
Online Web Tutor
Keep learning and Sharing :)
#WordpressTutorialsPoint
#WordpressLearnersHub
#WordpressCustomizations
#LearnWordpressStepbyStep
#WordpressBySanjay
Steps to Add WP_Customize_Color_Control,
====================
1. Register Section
2. Register Setting
3. Add Control
4. Show on Website
1. Register Section,
====================
By the help of 'add_section' we can add our section to wp customize option
$wp_customize-[]add_section("custom_theme_section_area",array(
"title"=[]"Custom Theme Settings"
));
2. Register Setting
====================
By using 'add_setting' we can add our settings to created section,
$wp_customize-[]add_setting("custom_theme_color_text_setting");
3. Add Control
====================
To add a control in given section and settings we should use 'add_control'
$wp_customize-[]add_control(new WP_Customize_Color_Control(
$wp_customize,
"text_color",
array(
"label" =[] "Select Color for Text",
"section" =[] "custom_theme_section_area",
"settings" =[] "custom_theme_color_text_setting"
)
));
4. Show on Website
===============
To show our control setting to website we have to use wp method "get_theme_mod('custom_theme_color_setting')"
where 'custom_theme_color_setting' is the setting_id
Important Videos to watch before this video session to make it clear,
===============
SOCIAL :
===============
RECOMMENDATION:
===============
1. Some knowledge of PHP, HTML for this video series
Also you can learn Wordpress Custom
===============
Important Videos from Plugin Development Series
===============
Tags
===============
online web tutor,
profotech solutions,
wordpress theme options development from scratch in hindi,
wordpress theme options development from scratch in easy steps,
wordpress theme options development,
wordpress theme options development in easy steps,
theme options development in wordpress from scratch,
theme options development in wordpress by online web tutor,
theme options development in wordpress tutorials from scratch in hindi,
theme options development tutorials in hindi,
owt tuts,
online web tutorials,
Thanks
Online Web Tutor
Keep learning and Sharing :)
Комментарии