示例#1
0
function wptouch_the_tab_setting_class_name()
{
    echo wptouch_get_tab_setting_class_name();
}
示例#2
0
					<?php 
        while (wptouch_has_tab_section_settings()) {
            ?>
						<?php 
            wptouch_the_tab_section_setting();
            ?>

						<div class="wptouch-setting type-<?php 
            wptouch_the_tab_setting_type();
            if (wptouch_tab_setting_has_tags()) {
                echo ' ' . wptouch_tab_setting_the_tags();
            }
            ?>
"<?php 
            if (wptouch_get_tab_setting_class_name()) {
                echo ' id="setting_' . wptouch_get_tab_setting_class_name() . '"';
            }
            ?>
>
							
							<?php 
            if (file_exists(dirname(__FILE__) . '/settings/' . wptouch_get_tab_setting_type() . '.php')) {
                ?>
								<?php 
                include 'settings/' . wptouch_get_tab_setting_type() . '.php';
                ?>
							<?php 
            } else {
                ?>
								<?php 
                do_action('wptouch_show_custom_setting', wptouch_get_tab_setting_type());