forked from jayism/WP-Theme-Customizer-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
29 lines (16 loc) · 887 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php get_header(); ?>
<section class="content">
<p> Im Just sample content</p>
<ul>
<li><?php if( cw_theme_option('cw_text')){ echo cw_theme_option('cw_text', 'test'); } ?></li>
<li><?php if(cw_theme_option('cw_textarea')){ echo cw_theme_option('cw_textarea'); } ?></li>
<li><?php if(cw_theme_option('cw_checkbox')){ echo cw_theme_option('cw_checkbox'); } ?></li>
<li><?php if(cw_theme_option('cw_radio')){ echo cw_theme_option('cw_radio'); } ?></li>
<li><?php if(cw_theme_option('cw_color')){ echo cw_theme_option('cw_color'); } ?></li>
<li><?php if(cw_theme_option('cw_image')){ echo cw_theme_option('cw_image'); } ?></li>
<li><?php if(cw_theme_option('cw_file')){ echo cw_theme_option('cw_file'); } ?></li>
<li><?php if(cw_theme_option('cw_pages')){ echo cw_theme_option('cw_pages'); } ?></li>
</ul>
</section>
<?php get_sidebar(); ?>
<?php get_footer(); ?>