• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP yit_get_model函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中yit_get_model函数的典型用法代码示例。如果您正苦于以下问题:PHP yit_get_model函数的具体用法?PHP yit_get_model怎么用?PHP yit_get_model使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了yit_get_model函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: init

 public function init()
 {
     $mobile = yit_get_model('mobile');
     add_action('wp_enqueue_scripts', array(&$this, 'add_popup_css'));
     if (!yit_get_option('popup') || $mobile->isMobile()) {
         return;
     }
     $this->title = yit_get_option('popup_title');
     $this->message = yit_get_option('popupmessage');
     $this->image = yit_get_option('popup_image');
     $this->newsletter = yit_get_option('popup_news_url');
     if (!$this->title && !$this->message && !$this->image && !$this->newsletter) {
         return;
     }
     $this->site_name = sanitize_title(get_bloginfo('name'));
     $this->cookie_name = 'yit-popup-' . $this->site_name;
     $this->cookie_access = 'yit-popup-access-' . $this->site_name;
     add_action('wp_enqueue_scripts', array(&$this, 'add_popup_js'));
     $this->access_cookie = !isset($_COOKIE[$this->cookie_access]) ? false : $_COOKIE[$this->cookie_access];
     $this->no_popup_cookie = !isset($_COOKIE[$this->cookie_name]) ? false : $_COOKIE[$this->cookie_name];
     /** action for append popup html **/
     if (!$this->access_cookie && !$this->no_popup_cookie) {
         add_action('yit_after_wrapper', array(&$this, 'get_html'));
     }
 }
开发者ID:jayeshnair,项目名称:ctp,代码行数:25,代码来源:Popup.php


示例2: yit_add_shortcodes

/**
 * Add more shortcodes to the framework
 * 
 */
function yit_add_shortcodes($shortcodes)
{
    /** Edit attributes in existing shortcodes */
    unset($shortcodes['section_blog']['attributes']['other_posts_label']);
    unset($shortcodes['section_services']['attributes']['show_detail_hover']);
    unset($shortcodes['section_services']['attributes']['show_title_hover']);
    unset($shortcodes['recentpost']['attributes']['date']);
    unset($shortcodes['recentpost']['attributes']['excerpt_length']);
    unset($shortcodes['recentpost']['attributes']['readmore']);
    $shortcodes['recentpost']['attributes']['date'] = array('title' => __('Show date', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    unset($shortcodes['popularpost']['attributes']['date']);
    unset($shortcodes['popularpost']['attributes']['excerpt_length']);
    unset($shortcodes['popularpost']['attributes']['readmore']);
    $shortcodes['popularpost']['attributes']['date'] = array('title' => __('Show date', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section']['attributes']['items_per_row'] = array('title' => __('Items per row', 'yit'), 'type' => 'select', 'options' => array('2' => __('2 items', 'yit'), '3' => __('3 items', 'yit'), '4' => __('4 items', 'yit'), '6' => __('6 items', 'yit')), 'std' => '4');
    $shortcodes['section']['attributes']['show_services_button'] = array('title' => __('Show Button', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section']['attributes']['services_button_text'] = array('title' => __('Button Text', 'yit'), 'type' => 'text', 'std' => 'Read More');
    $shortcodes['section_services']['attributes']['services_style'] = array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('circle' => __('Circle', 'yit'), 'bandw' => __('Black & White', 'yit')), 'std' => 'circle');
    $shortcodes['section']['attributes']['services_style'] = array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('' => __('Select an option', 'yit'), 'circle' => __('Circle', 'yit'), 'bandw' => __('Black & White', 'yit')), 'std' => 'circle');
    $shortcodes['section_services']['attributes']['items_per_row'] = array('title' => __('Items per row', 'yit'), 'type' => 'select', 'options' => array('2' => __('2 items', 'yit'), '3' => __('3 items', 'yit'), '4' => __('4 items', 'yit'), '6' => __('6 items', 'yit')), 'std' => '4');
    $shortcodes['section_services']['attributes']['show_detail_hover'] = array('title' => __('Show detail (Circle)', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section_services']['attributes']['show_title_hover'] = array('title' => __('Show title (Circle)', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section_services']['attributes']['show_services_button'] = array('title' => __('Show Button (B.&W.)', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section_services']['attributes']['services_button_text'] = array('title' => __('Button Text (B.&W.)', 'yit'), 'type' => 'text', 'std' => 'Read More');
    $shortcodes['section']['attributes']['portfolio_style'] = array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('' => __('Select an option', 'yit'), 'slider' => __('Slider', 'yit')), 'std' => 'slider');
    $shortcodes['section_portfolio']['attributes'] = array('items' => array('title' => __('N. of items', 'yit'), 'description' => __('Show all with -1', 'yit'), 'type' => 'number', 'std' => '-1'), 'title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'description' => array('title' => __('Description', 'yit'), 'type' => 'text', 'std' => ''), 'portfolio' => array('title' => __('Portfolio', 'yit'), 'type' => 'select', 'options' => yit_get_model('shortcodes')->get_portfolios(), 'std' => ''), 'show_lightbox_hover' => array('title' => __('Show lightbox hover', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'portfolio_style' => array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('classic' => __('Classic', 'yit'), 'slider' => __('Slider', 'yit')), 'std' => 'classic'));
    $shortcodes['section']['attributes']['show_author'] = array('title' => __('Show author', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section_blog']['attributes']['show_author'] = array('title' => __('Show author', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section_blog']['attributes']['show_featured_image'] = array('title' => __('Show featured image (for sticky posts)', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    /** Adding Icon Type to share **/
    $shortcodes['share']['attributes']['icon_type'] = array('title' => __('Icon Type', 'yit'), 'type' => 'select', 'options' => array('default' => __('Simple', 'yit'), 'fade' => __('Round', 'yit'), 'square' => __('Square', 'yit')), 'std' => 'rounded');
    /** Team/accordion **/
    $shortcodes['team']['attributes']['style'] = array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('professional' => __('Professional', 'yit')), 'std' => 'professional');
    /* ***** SQUARED (RUMBLE) STYLE *****
    	
    	$shortcodes['team']['attributes']['sqrcols'] = array(
    				 		'title' => __('Squared columns', 'yit'),
    						'type' => 'text',
    						'std'  => 'auto'
        );
    	$shortcodes['team']['attributes']['sqrsize'] = array(
    				 		'title' => __('Squared box size', 'yit'),
    						'type' => 'text',
    						'std'  => '0.974'
        );
    	$shortcodes['team']['attributes']['sqrxoom'] = array(
    				 		'title' => __('Squared zoom', 'yit'),
    						'type' => 'text',
    						'std'  => '1.5'
        );
    	$shortcodes['team']['attributes']['sqrslow'] = array(
    				 		'title' => __('Squared slowness', 'yit'),
    						'type' => 'text',
    						'std'  => '150'
        );
    	*/
    $faq_categories = yit_get_faq_categories();
    return array_merge($shortcodes, array('testimonials' => array('title' => __('Testimonials', 'yit'), 'description' => __('Show all post on testimonials post types', 'yit'), 'tab' => 'cpt', 'has_content' => false, 'attributes' => array('items' => array('title' => __('N. of items', 'yit'), 'description' => __('Show all with -1', 'yit'), 'type' => 'number', 'std' => '-1'), 'style' => array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('square-style' => __('Square Style', 'yit'), 'quote-style' => __('Quote Style', 'yit'), 'circle-style' => __('Circle Style', 'yit'), 'bazar-style' => __('Bazar Style', 'yit')), 'std' => 'square-style'))), 'testimonials_slider' => array('title' => __('Testimonials slider', 'yit'), 'description' => __('Show a slider with testimonials', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('items' => array('title' => __('N. of items', 'yit'), 'type' => 'number', 'std' => ''), 'excerpt' => array('title' => __('Limit words', 'yit'), 'type' => 'number', 'std' => '32'), 'speed' => array('title' => __('Speed (ms)', 'yit'), 'type' => 'number', 'std' => '500'), 'timeout' => array('title' => __('Time out (ms)', 'yit'), 'type' => 'number', 'std' => '5000'))), 'logos_slider' => array('title' => __('Logos slider', 'yit'), 'description' => __('Show a slider with logos', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'items' => array('title' => __('N. of items', 'yit'), 'type' => 'number', 'std' => '-1'), 'height' => array('title' => __('Height (px)', 'yit'), 'type' => 'number', 'std' => '50'), 'speed' => array('title' => __('Speed (ms)', 'yit'), 'type' => 'number', 'std' => '500'))), 'social' => array('title' => __('Social', 'yit'), 'description' => __('Print a simple icon link for social', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('type' => array('title' => __('Type', 'yit'), 'type' => 'select', 'options' => array('facebook' => __('Facebook', 'yit'), 'twitter' => __('Twitter', 'yit'), 'rss' => __('RSS', 'yit'), 'flickr' => __('Flickr', 'yit'), 'linkedin' => __('LinkedIn', 'yit'), 'skype' => __('Skype', 'yit'), 'google' => __('Google', 'yit'), 'pinterest' => __('Pinterest', 'yit'), 'instagram' => __('Instagram', 'yit'), 'google' => __('Google Plus', 'yit'), 'youtube' => __('Youtube', 'yit'), 'bookmark' => __('Bookmark', 'yit'), 'mail' => __('Mail', 'yit'), 'vimeo' => __('Vimeo', 'yit'), 'vine' => __('Vine', 'yit')), 'std' => ''), 'icon_type' => array('title' => __('Icon Type', 'yit'), 'type' => 'select', 'options' => array('default' => __('Default', 'yit'), 'fade' => __('Round and Fade', 'yit'), 'square' => __('Square', 'yit')), 'std' => 'default'), 'size' => array('title' => __('Size', 'yit'), 'type' => 'select', 'options' => array('small' => __('Small', 'yit'), '' => __('Normal', 'yit')), 'std' => ''), 'href' => array('title' => __('URL', 'yit'), 'type' => 'text', 'std' => '#'), 'target' => array('title' => __('Target', 'yit'), 'type' => 'select', 'options' => array('' => __('Default', 'yit'), '_blank' => __('Blank', 'yit'), '_parent' => __('Parent', 'yit'), '_top' => __('Top', 'yit')), 'std' => ''), 'title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''))), 'random_numbers' => array('title' => __('Random numbers', 'yit'), 'description' => __('Show a icon with a block text', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('icon' => array('title' => __('Icon URL', 'yit'), 'type' => 'text', 'std' => ''), 'text' => array('title' => __('Text', 'yit'), 'type' => 'text', 'std' => ''), 'number' => array('title' => __('Number', 'yit'), 'type' => 'text', 'std' => ''), 'last' => array('title' => __('Last element', 'yit'), 'type' => 'checkbox', 'std' => 'no'))), 'box_title' => array('title' => __('Box title', 'yit'), 'description' => __('Show a title centered with line', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array()), 'faq' => array('title' => __('FAQ', 'yit'), 'description' => __('Show a Frequently Asked Questions', 'yit'), 'tab' => 'cpt', 'has_content' => false, 'attributes' => array('filter' => array('title' => __('Filterable', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'category' => array('title' => __('Category', 'yit'), 'type' => 'checklist', 'options' => $faq_categories, 'std' => ''))), 'call_three' => array('title' => __('Call to action newsletter', 'yit'), 'description' => __('Show a message with newsletter subscription', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'incipit' => array('title' => __('Incipit', 'yit'), 'type' => 'text', 'std' => ''), 'email' => array('title' => __('E-mail', 'yit'), 'type' => 'text', 'std' => ''), 'email_label' => array('title' => __('E-mail label', 'yit'), 'type' => 'text', 'std' => 'your e-mail'), 'submit' => array('title' => __('Button text', 'yit'), 'type' => 'text', 'std' => ''), 'action' => array('title' => __('Action URL', 'yit'), 'type' => 'text', 'std' => ''), 'hidden_fields' => array('title' => __('Hidden fields', 'yit'), 'type' => 'text', 'std' => ''), 'method' => array('title' => __('Method', 'yit'), 'type' => 'select', 'options' => array('post' => __('POST', 'yit'), 'get' => __('GET', 'yit')), 'std' => 'post'))), 'logo' => array('title' => __('Logo font', 'yit'), 'description' => __('Show a text with logo style', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('size' => array('title' => __('Size of text', 'yit'), 'type' => 'number', 'std' => '44'), 'unit' => array('title' => __('Unit', 'yit'), 'type' => 'select', 'options' => array('px' => 'px', 'em' => 'em', '%' => '%'), 'std' => 'px'), 'color' => array('title' => __('Color', 'yit'), 'type' => 'colorpicker', 'std' => '#b6b6b7'))), 'numbers_sections' => array('title' => __('Numbers sections', 'yit'), 'description' => __('Show a number background with a title and text', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('number' => array('title' => __('Number', 'yit'), 'type' => 'number', 'std' => '1'), 'title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'last' => array('title' => __('Last element', 'yit'), 'type' => 'checkbox', 'std' => 'no'))), 'box_service' => array('title' => __('Box service', 'yit'), 'description' => __('Show a box with services style', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'url' => array('title' => __('URL', 'yit'), 'type' => 'text', 'std' => 'http://'), 'img' => array('title' => __('Image URL', 'yit'), 'type' => 'text', 'std' => 'http://'), 'show_title' => array('title' => __('Show Title', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'show_content' => array('title' => __('Show Content', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'show_services_button' => array('title' => __('Show Button', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'services_button_text' => array('title' => __('Button Text', 'yit'), 'type' => 'text', 'std' => 'Read More'))), 'grid' => array('title' => __('Grid', 'yit'), 'description' => __('Use the grid for the responsive', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('first' => array('title' => __('First', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'last' => array('title' => __('Last', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'columns' => array('title' => __('Columns', 'yit'), 'description' => __('value between 1 and 12', 'yit'), 'type' => 'number', 'std' => '1', 'min' => '1', 'max' => '12'))), 'icon_list' => array('title' => __('Icon list', 'yit'), 'description' => __('Use a list with an icon', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'multiple' => true, 'unlimited' => true, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'last' => array('title' => __('Last element', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'icon_1' => array('title' => __('Icon', 'yit'), 'type' => 'select', 'options' => yit_get_model('shortcodes')->get_awesome_icons(), 'std' => '', 'multiple' => true), 'icon_url_1' => array('title' => __('Icon url', 'yit'), 'type' => 'text', 'std' => '', 'multiple' => true), 'item_1' => array('title' => __('Item', 'yit'), 'type' => 'text', 'std' => '', 'multiple' => true), 'item_link_1' => array('title' => __('Item link', 'yit'), 'type' => 'text', 'std' => '', 'multiple' => true))), 'sitemap' => array('title' => __('Sitemap', 'yit'), 'description' => __('The sitemap can be configured in Theme Options settings.', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'multiple' => false, 'unlimited' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''))), 'label' => array('hide' => true)));
}
开发者ID:zgomotos,项目名称:Bazar,代码行数:63,代码来源:shortcodes.php


示例3: add_splash_google_fonts

 /**
  * Load the Google Fonts
  * 
  * @return void
  * @since 1.0.0
  */
 public function add_splash_google_fonts()
 {
     $options = array(yit_get_option('splash-container-label_font'), yit_get_option('splash-container-submit_font'), yit_get_option('splash-container-lostback_font'));
     $fonts = array();
     foreach ($options as $option) {
         yit_get_model('google_font')->add_google_font($option['family']);
     }
 }
开发者ID:zgomotos,项目名称:Bazar,代码行数:14,代码来源:Splash.php


示例4: display_page

    /**
     * Display tab html code
     * 
     * @return string
     * @since 1.0.0
     */
    public function display_page()
    {
        $skins = yit_get_model('skin')->skins;
        ?>
			<div id="skins_skins" class="yit_options rm_option rm_input rm_text">
                <div class="option">
                	<?php 
        if (!empty($skins)) {
            ?>
                    <label for="skin"><?php 
            _e('Choose a skin to use', 'yit');
            ?>
</label>
	                <div class="select_wrapper">
	                    <select name="skin" id="skin">
							<?php 
            foreach ($skins as $id => $name) {
                ?>
							<option value="<?php 
                echo $id;
                ?>
"<?php 
                selected($id, yit_get_option('skin'));
                ?>
><?php 
                echo $name;
                ?>
</option>
							<?php 
            }
            ?>
	                    </select>
	                </div>                    
					<input type="submit" value="<?php 
            _e('Apply', 'yit');
            ?>
" class="button" name="apply-skin" id="apply-skin" />
					<?php 
        } else {
            ?>
					<?php 
            _e('No skin to select.', 'yit');
            ?>
					<?php 
        }
        ?>
                </div>
                <div class="description">
					<?php 
        _e('Apply skin you want to use. This will replace some options in the theme options.', 'yit');
        ?>
                </div>
                <div class="clear"></div>
            </div>
<?php 
    }
开发者ID:jayeshnair,项目名称:ctp,代码行数:62,代码来源:Skins.php


示例5: yit_add_shortcodes

/**
 * Add more shortcodes to the framework
 * 
 */
function yit_add_shortcodes($shortcodes)
{
    /** Edit attributes in existing shortcodes */
    unset($shortcodes['section_blog']['attributes']['other_posts_label']);
    unset($shortcodes['section_blog']['attributes']['show_featured']);
    unset($shortcodes['section_blog']['attributes']['show_excerpt']);
    unset($shortcodes['section_blog']['attributes']['show_readmore']);
    unset($shortcodes['section_blog']['attributes']['excerpt_length']);
    unset($shortcodes['section_blog']['attributes']['readmore_text']);
    unset($shortcodes['section_blog']['attributes']['show_featured']);
    unset($shortcodes['section_services']['attributes']['show_detail_hover']);
    unset($shortcodes['section_services']['attributes']['show_title_hover']);
    unset($shortcodes['arrow']);
    unset($shortcodes['team']);
    /*$shortcodes['team']['attributes']['style'] = array(
            'title' => __('Style', 'yit'),
            'type' => 'select',
            'options' => array(
                'accordion' => __('Accordion', 'yit'),
                'rounded' => __('Round and Fade', 'yit')
            ),
            'std'  => 'accordion'
        );
    	*/
    $shortcodes['section']['attributes']['items_per_row'] = array('title' => __('Items per row', 'yit'), 'type' => 'select', 'options' => array('2' => __('2 items', 'yit'), '3' => __('3 items', 'yit'), '4' => __('4 items', 'yit'), '6' => __('6 items', 'yit')), 'std' => '4');
    $shortcodes['section']['attributes']['show_services_button'] = array('title' => __('Show Button', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section']['attributes']['services_button_text'] = array('title' => __('Button Text', 'yit'), 'type' => 'text', 'std' => 'Read More');
    $shortcodes['section_services']['attributes']['items_per_row'] = array('title' => __('Items per row', 'yit'), 'type' => 'select', 'options' => array('2' => __('2 items', 'yit'), '3' => __('3 items', 'yit'), '4' => __('4 items', 'yit'), '6' => __('6 items', 'yit')), 'std' => '4');
    $shortcodes['section_services']['attributes']['show_services_button'] = array('title' => __('Show Button', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section_services']['attributes']['services_button_text'] = array('title' => __('Button Text', 'yit'), 'type' => 'text', 'std' => 'Read More');
    $shortcodes['section_services']['attributes']['services_icon_title'] = array('title' => __('Title icon URL', 'yit'), 'type' => 'text', 'desc' => __('Select the icon to use for the title.', 'yit'), 'std' => '');
    $shortcodes['section']['attributes']['services_icon_title'] = array('title' => __('Title icon URL', 'yit'), 'type' => 'text', 'desc' => __('Select the icon to use for the title.', 'yit'), 'std' => '');
    $shortcodes['section']['attributes']['portfolio_style'] = array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('' => __('Select an option', 'yit'), 'classic' => __('Classic', 'yit'), 'pinterest' => __('Pinterest', 'yit')), 'std' => 'classic');
    $shortcodes['section_portfolio']['attributes'] = array('items' => array('title' => __('N. of items', 'yit'), 'description' => __('Show all with -1', 'yit'), 'type' => 'number', 'std' => '-1'), 'title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'portfolio_icon_title' => array('title' => __('Title icon URL', 'yit'), 'type' => 'text', 'desc' => __('Select the icon to use for the title.', 'yit'), 'std' => ''), 'description' => array('title' => __('Description', 'yit'), 'type' => 'text', 'std' => ''), 'portfolio' => array('title' => __('Portfolio', 'yit'), 'type' => 'select', 'options' => yit_get_model('shortcodes')->get_portfolios(), 'std' => ''), 'portfolio_style' => array('title' => __('Style', 'yit'), 'type' => 'select', 'options' => array('' => __('Select an option', 'yit'), 'classic' => __('Classic', 'yit'), 'pinterest' => __('Pinterest', 'yit')), 'std' => 'classic'), 'show_lightbox_hover' => array('title' => __('Show lightbox hover', 'yit'), 'type' => 'checkbox', 'std' => 'no'));
    $shortcodes['section']['attributes']['portfolio_icon_title'] = array('title' => __('Title icon URL', 'yit'), 'type' => 'text', 'desc' => __('Select the icon to use for the title.', 'yit'), 'std' => '');
    $shortcodes['section']['attributes']['blog_icon_title'] = array('title' => __('Title icon URL', 'yit'), 'type' => 'text', 'desc' => __('Select the icon to use for the title.', 'yit'), 'std' => '');
    $shortcodes['section_blog']['attributes']['blog_icon_title'] = array('title' => __('Title icon URL', 'yit'), 'type' => 'text', 'desc' => __('Select the icon to use for the title.', 'yit'), 'std' => '');
    $shortcodes['section_blog']['attributes']['show_author'] = array('title' => __('Show Author', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section']['attributes']['show_author'] = array('title' => __('Show Author', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section']['attributes']['enable_slider'] = $shortcodes['section_blog']['attributes']['enable_slider'] = array('title' => __('Enable Slider', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    $shortcodes['section']['attributes']['blog_show_hover'] = array('title' => __('Enable hover', 'yit'), 'type' => 'checkbox', 'std' => 'yes');
    /** Adding Icon Type to share **/
    $shortcodes['share']['attributes']['icon_type'] = array('title' => __('Icon Type', 'yit'), 'type' => 'select', 'options' => array('' => __('Simple', 'yit'), 'fade' => __('Round', 'yit')), 'std' => '');
    /** Adding button value in the [button] shortcode **/
    $shortcodes['button']['attributes']['color']['options'] = array_merge(array('white-button' => __('White Button', 'yit')), $shortcodes['button']['attributes']['color']['options']);
    $shortcodes['button']['attributes']['color']['options'] = array_merge(array('red-button' => __('Red Button', 'yit')), $shortcodes['button']['attributes']['color']['options']);
    $shortcodes['button']['attributes']['color']['options'] = array_merge(array('black-button' => __('Black Button', 'yit')), $shortcodes['button']['attributes']['color']['options']);
    $shortcodes['button']['attributes']['color']['options'] = array_merge(array('white-big-button' => __('White Big Button', 'yit')), $shortcodes['button']['attributes']['color']['options']);
    $shortcodes['button']['attributes']['color']['options'] = array_merge(array('black-big-button' => __('Black Big Button', 'yit')), $shortcodes['button']['attributes']['color']['options']);
    $shortcodes['call_two']['attributes']['color']['options'] = array_merge(array('button' => __('Default style', 'yit')), $shortcodes['call_two']['attributes']['color']['options']);
    $faq_categories = yit_get_faq_categories();
    $testimonial_categories = yit_get_testimonial_categories();
    return array_merge($shortcodes, array('testimonials' => array('title' => __('Testimonials', 'yit'), 'description' => __('Show all post on testimonials post types', 'yit'), 'tab' => 'cpt', 'has_content' => false, 'attributes' => array('items' => array('title' => __('N. of items', 'yit'), 'description' => __('Show all with -1', 'yit'), 'type' => 'number', 'std' => '-1'), 'cat' => array('title' => __('Categories', 'yit'), 'description' => __('Select the categories of posts to show', 'yit'), 'type' => 'select', 'options' => $testimonial_categories, 'std' => ''))), 'testimonials_slider' => array('title' => __('Testimonials slider', 'yit'), 'description' => __('Show a slider with testimonials', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('items' => array('title' => __('N. of items', 'yit'), 'description' => __('Show all with -1', 'yit'), 'type' => 'number', 'std' => '-1'), 'excerpt' => array('title' => __('Limit words', 'yit'), 'type' => 'number', 'std' => '32'), 'speed' => array('title' => __('Speed (ms)', 'yit'), 'type' => 'number', 'std' => '500'), 'timeout' => array('title' => __('Time out (ms)', 'yit'), 'type' => 'number', 'std' => '5000'), 'cat' => array('title' => __('Categories', 'yit'), 'description' => __('Select the categories of posts to show', 'yit'), 'type' => 'select', 'options' => $testimonial_categories, 'std' => ''), 'title' => array('title' => __('Slider Title', 'yit'), 'description' => __('Select the title of the slider', 'yit'), 'type' => 'text', 'std' => 'Happy customers'))), 'logos_slider' => array('title' => __('Logos slider', 'yit'), 'description' => __('Show a slider with logos', 'yit'), 'tab' => 'cpt', 'has_content' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'items' => array('title' => __('N. of items', 'yit'), 'type' => 'number', 'std' => '-1'), 'height' => array('title' => __('Height (px)', 'yit'), 'type' => 'number', 'std' => '50'), 'speed' => array('title' => __('Speed (ms)', 'yit'), 'type' => 'number', 'std' => '500'))), 'social' => array('title' => __('Social', 'yit'), 'description' => __('Print a simple icon link for social', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('type' => array('title' => __('Type', 'yit'), 'type' => 'select', 'options' => array('facebook' => __('Facebook', 'yit'), 'twitter' => __('Twitter', 'yit'), 'rss' => __('RSS', 'yit'), 'google' => __('Google Plus', 'yit'), 'pinterest' => __('Pinterest', 'yit'), 'instagram' => __('Instagram', 'yit'), 'bookmark' => __('Bookmark', 'yit'), 'mail' => __('Mail', 'yit'), 'flickr' => __('Flickr', 'yit'), 'skype' => __('Skype', 'yit'), 'youtube' => __('Youtube', 'yit')), 'std' => ''), 'icon_type' => array('title' => __('Icon Type', 'yit'), 'type' => 'select', 'options' => array('default' => __('Default', 'yit'), 'round' => __('Round', 'yit'), 'simple-black' => __('Simple Black', 'yit'), 'simple-white' => __('Simple White', 'yit')), 'std' => 'default'), 'size' => array('title' => __('Size', 'yit'), 'type' => 'select', 'options' => array('small' => __('Small', 'yit'), '' => __('Normal', 'yit')), 'std' => ''), 'href' => array('title' => __('URL', 'yit'), 'type' => 'text', 'std' => '#'), 'target' => array('title' => __('Target', 'yit'), 'type' => 'select', 'options' => array('' => __('Default', 'yit'), '_blank' => __('Blank', 'yit'), '_parent' => __('Parent', 'yit'), '_top' => __('Top', 'yit')), 'std' => ''), 'title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''))), 'random_numbers' => array('title' => __('Random numbers', 'yit'), 'description' => __('Show a icon with a block text', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('icon' => array('title' => __('Icon URL', 'yit'), 'type' => 'text', 'std' => ''), 'text' => array('title' => __('Text', 'yit'), 'type' => 'text', 'std' => ''), 'number' => array('title' => __('Number', 'yit'), 'type' => 'text', 'std' => ''), 'last' => array('title' => __('Last element', 'yit'), 'type' => 'checkbox', 'std' => 'no'))), 'box_title' => array('title' => __('Box title', 'yit'), 'description' => __('Show a title centered with line', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('class' => array('title' => __('Class', 'yit'), 'type' => 'text', 'std' => ''), 'border' => array('title' => __('Border', 'yit'), 'type' => 'select', 'options' => array('bottom' => __('bottom', 'yit'), 'middle' => __('middle', 'yit'), 'around' => __('around', 'yit'), 'none' => __('none', 'yit')), 'std' => 'middle'))), 'faq' => array('title' => __('FAQ', 'yit'), 'description' => __('Show a Frequently Asked Questions', 'yit'), 'tab' => 'cpt', 'has_content' => false, 'attributes' => array('category' => array('title' => __('Category', 'yit'), 'type' => 'checklist', 'options' => $faq_categories, 'std' => ''))), 'call_three' => array('title' => __('Call to action newsletter', 'yit'), 'description' => __('Show a message with newsletter subscription', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'incipit' => array('title' => __('Incipit', 'yit'), 'type' => 'text', 'std' => ''), 'email' => array('title' => __('E-mail', 'yit'), 'type' => 'text', 'std' => ''), 'email_label' => array('title' => __('E-mail label', 'yit'), 'type' => 'text', 'std' => 'your e-mail'), 'submit' => array('title' => __('Button text', 'yit'), 'type' => 'text', 'std' => ''), 'action' => array('title' => __('Action URL', 'yit'), 'type' => 'text', 'std' => ''), 'hidden_fields' => array('title' => __('Hidden fields', 'yit'), 'type' => 'text', 'std' => ''), 'method' => array('title' => __('Method', 'yit'), 'type' => 'select', 'options' => array('post' => __('POST', 'yit'), 'get' => __('GET', 'yit')), 'std' => 'post'))), 'call_four' => array('title' => __('Call to action with banner button', 'yit'), 'description' => __('Shows a box with an banner, text and button', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('href' => array('title' => __('URL', 'yit'), 'type' => 'text', 'std' => '#'), 'background_image_url' => array('title' => __('Background image URL', 'yit'), 'type' => 'text', 'std' => '#'), 'label_button' => array('title' => __('Label button', 'yit'), 'type' => 'text', 'std' => ''), 'slogan' => array('title' => __('Slogan', 'yit'), 'type' => 'text', 'std' => ''), 'subslogan' => array('title' => __('Subslogan', 'yit'), 'type' => 'text', 'std' => ''), 'hover_color' => array('title' => __('Hover Color', 'yit'), 'type' => 'colorpicker', 'std' => '#000000'))), 'logo' => array('title' => __('Logo font', 'yit'), 'description' => __('Show a text with logo style', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('size' => array('title' => __('Size of text', 'yit'), 'type' => 'number', 'std' => '44'), 'unit' => array('title' => __('Unit', 'yit'), 'type' => 'select', 'options' => array('px' => 'px', 'em' => 'em', '%' => '%'), 'std' => 'px'), 'color' => array('title' => __('Color', 'yit'), 'type' => 'colorpicker', 'std' => '#b6b6b7'))), 'numbers_sections' => array('title' => __('Numbers sections', 'yit'), 'description' => __('Show a number background with a title and text', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('number' => array('title' => __('Number', 'yit'), 'type' => 'number', 'std' => '1'), 'title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'last' => array('title' => __('Last element', 'yit'), 'type' => 'checkbox', 'std' => 'no'))), 'box_service' => array('title' => __('Box service', 'yit'), 'description' => __('Show a box with services style', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'url' => array('title' => __('URL', 'yit'), 'type' => 'text', 'std' => 'http://'), 'img' => array('title' => __('Image URL', 'yit'), 'type' => 'text', 'std' => 'http://'), 'show_title' => array('title' => __('Show Title', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'show_content' => array('title' => __('Show Content', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'show_services_button' => array('title' => __('Show Button', 'yit'), 'type' => 'checkbox', 'std' => 'yes'), 'services_button_text' => array('title' => __('Button Text', 'yit'), 'type' => 'text', 'std' => 'Read More'))), 'grid' => array('title' => __('Grid', 'yit'), 'description' => __('Use the grid for the responsive', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'attributes' => array('first' => array('title' => __('First', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'last' => array('title' => __('Last', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'columns' => array('title' => __('Columns', 'yit'), 'description' => __('value between 1 and 12', 'yit'), 'type' => 'number', 'std' => '1', 'min' => '1', 'max' => '12'))), 'icon_list' => array('title' => __('Icon list', 'yit'), 'description' => __('Use a list with an icon', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'multiple' => true, 'unlimited' => true, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'last' => array('title' => __('Last element', 'yit'), 'type' => 'checkbox', 'std' => 'no'), 'icon_1' => array('title' => __('Icon', 'yit'), 'type' => 'select', 'options' => yit_get_model('shortcodes')->get_awesome_icons(), 'std' => '', 'multiple' => true), 'icon_url_1' => array('title' => __('Icon url', 'yit'), 'type' => 'text', 'std' => '', 'multiple' => true), 'item_1' => array('title' => __('Item', 'yit'), 'type' => 'text', 'std' => '', 'multiple' => true), 'item_link_1' => array('title' => __('Item link', 'yit'), 'type' => 'text', 'std' => '', 'multiple' => true))), 'sitemap' => array('title' => __('Sitemap', 'yit'), 'description' => __('The sitemap can be configured in Theme Options settings.', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'multiple' => false, 'unlimited' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''))), 'credit_card' => array('title' => __('Credit card', 'yit'), 'description' => __('Show an images of credit cards', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'attributes' => array('type' => array('title' => __('Type', 'yit'), 'type' => 'checklist', 'options' => array('amazon' => 'Amazon', 'amex' => 'American Express', 'amex_gold' => 'American Express Gold', 'amex_green' => 'American Express Green', 'amex_silver' => 'American Express Silver', 'apple' => 'Apple', 'bank' => 'Bank', 'cash' => 'Cash', 'chase' => 'Chase', 'coupon' => 'Coupon', 'credit' => 'Credit', 'debit' => 'Debit', 'discover' => 'Discover', 'discover_novus' => 'Discover Novus', 'echeck' => 'eCheck', 'generic_1' => 'Generic 1', 'generic_2' => 'Generic 2', 'generic_3' => 'Generic 3', 'gift' => 'Gift', 'gold' => 'Gold', 'googleckout' => 'Google Checkout', 'itunes' => 'iTunes (red)', 'itunes_2' => 'iTunes (blue)', 'itunes_3' => 'iTunes (green)', 'mastercard' => 'Mastercard', 'mileage' => 'Mileage', 'paypal' => 'PayPal', 'sapphire' => 'Sapphire', 'solo' => 'Solo', 'visa' => 'Visa'), 'std' => 'generic_1'))), 'teaser' => array('title' => __('Teaser', 'yit'), 'description' => __('Create a banner with an image, a link and text.', 'yit'), 'tab' => 'shortcodes', 'has_content' => false, 'multiple' => false, 'unlimited' => false, 'attributes' => array('title' => array('title' => __('Title', 'yit'), 'type' => 'text', 'std' => ''), 'subtitle' => array('title' => __('Subtitle', 'yit'), 'type' => 'text', 'std' => ''), 'image' => array('title' => __('Image URL', 'yit'), 'type' => 'text', 'std' => ''), 'link' => array('title' => __('Link', 'yit'), 'type' => 'text', 'std' => ''), 'target' => array('title' => __('Target', 'yit'), 'type' => 'select', 'options' => array('' => '', '_blank' => __('Blank', 'yit'), '_parent' => __('Parent', 'yit'), '_self' => __('Self', 'yit'), '_top' => __('Top', 'yit')), 'std' => ''), 'hover_class' => array('title' => __('Hover Skin', 'yit'), 'type' => 'select', 'options' => array('black' => __('Black', 'yit'), 'white' => __('White', 'yit')), 'std' => ''), 'slogan_position' => array('title' => __('Slogan Position', 'yit'), 'type' => 'select', 'options' => array('top' => __('Top', 'yit'), 'center' => __('Center', 'yit'), 'bottom' => __('Bottom', 'yit')), 'std' => ''))), 'parallax' => array('title' => __('Parallax effect', 'yit'), 'description' => __('Create a fancy full-width parallax effect', 'yit'), 'tab' => 'shortcodes', 'has_content' => true, 'multiple' => false, 'unlimited' => false, 'attributes' => array('height' => array('title' => __('Container height', 'yit'), 'type' => 'number', 'std' => 300), 'image' => array('title' => __('Background Image URL', 'yit'), 'type' => 'text', 'std' => ''), 'valign' => array('title' => __('Vertical Align', 'yit'), 'type' => 'select', 'options' => array('top' => __('Top', 'yit'), 'center' => __('Center', 'yit'), 'bottom' => __('Bottom', 'yit')), 'std' => 'center'), 'halign' => array('title' => __('Horizontal Align', 'yit'), 'type' => 'select', 'options' => array('left' => __('Left', 'yit'), 'center' => __('Center', 'yit'), 'right' => __('Right', 'yit')), 'std' => 'center'), 'color' => array('title' => __('Content Text Color', 'yit'), 'type' => 'colorpicker', 'std' => '#ffffff'), 'hover_color' => array('title' => __('Links hover Color', 'yit'), 'type' => 'colorpicker', 'std' => '#000'), 'effect' => array('title' => __('Effect', 'yit'), 'type' => 'select', 'options' => array('fadeIn' => __('fadeIn', 'yit'), 'fadeInUp' => __('fadeInUp', 'yit'), 'fadeInDown' => __('fadeInDown', 'yit'), 'fadeInLeft' => __('fadeInLeft', 'yit'), 'fadeInRight' => __('fadeInRight', 'yit'), 'fadeInUpBig' => __('fadeInUpBig', 'yit'), 'fadeInDownBig' => __('fadeInDownBig', 'yit'), 'fadeInLeftBig' => __('fadeInLeftBig', 'yit'), 'fadeInRightBig' => __('fadeInRightBig', 'yit'), 'bounceIn' => __('bounceIn', 'yit'), 'bounceInDown' => __('bounceInDown', 'yit'), 'bounceInUp' => __('bounceInUp', 'yit'), 'bounceInLeft' => __('bounceInLeft', 'yit'), 'bounceInRight' => __('bounceInRight', 'yit'), 'rotateIn' => __('rotateIn', 'yit'), 'rotateInDownLeft' => __('rotateInDownLeft', 'yit'), 'rotateInDownRight' => __('rotateInDownRight', 'yit'), 'rotateInUpLeft' => __('rotateInUpLeft', 'yit'), 'rotateInUpRight' => __('rotateInUpRight', 'yit'), 'lightSpeedIn' => __('lightSpeedIn', 'yit'), 'hinge' => __('hinge', 'yit'), 'rollIn' => __('rollIn', 'yit')), 'std' => 'fadeIn'), 'button_size' => array('title' => __('Button Size', 'yit'), 'type' => 'select', 'options' => array('large' => __('Large', 'yit'), 'small' => __('Small', 'yit')), 'std' => 'small'))), 'label' => array('hide' => true)));
}
开发者ID:jayeshnair,项目名称:ctp,代码行数:58,代码来源:shortcodes.php


示例6: yit_hide_second_tab_layersslider

function yit_hide_second_tab_layersslider()
{
    ?>
    <script type="text/javascript">
        jQuery(document).ready(function($){
            if ( $('#<?php 
    echo yit_get_model('cpt_unlimited')->metabox_name;
    ?>
_slider_type').val() == 'layer-slider' )
                $('a[href="#item-edit"]').parent().remove();
        });
    </script>
    <?php 
}
开发者ID:eugenehiggins,项目名称:wellnessrx,代码行数:14,代码来源:config.php


示例7: display_page

    /**
     * Print an iframe for the shop
     *
     * @return void
     * @since 1.0.0
     */
    public function display_page()
    {
        $this->get_header('skins');
        $this->get_form(array('id' => 'skins', 'action' => 'panel_skins', 'enctype' => true, 'subpage' => strtolower(str_replace('YIT_Submenu_', '', __CLASS__)), 'action-field' => yit_get_model('skin')->admin_action));
        foreach ($this->_tabClasses as $slug => $class) {
            ?>
        <div id="yit_<?php 
            echo $slug;
            ?>
_skins" class="yit-box">
			<?php 
            $class->display_page();
            ?>
        </div>
        <?php 
        }
        $this->get_footer();
    }
开发者ID:jayeshnair,项目名称:ctp,代码行数:24,代码来源:Skins.php


示例8: extract

 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
if (!defined('ABSPATH')) {
    exit;
}
// Exit if accessed directly
global $post;
extract($args);
if (empty($value) || !is_array($value)) {
    $value = array();
}
$categories = yit_get_model('cpt_unlimited')->get_setting('categories', $post->ID);
?>
<div id="<?php 
echo $id;
?>
-container" <?php 
if (isset($deps)) {
    ?>
data-field="<?php 
    echo $id;
    ?>
" data-dep="<?php 
    echo $deps['ids'];
    ?>
" data-value="<?php 
    echo $deps['values'];
开发者ID:NgocSon2412,项目名称:website_banhang,代码行数:31,代码来源:categories.php


示例9: yit_delete_transient

 /**
  * Delete a transient.
  *
  * @since 2.8.0
  * @package WordPress
  * @subpackage Transient
  *
  * @uses do_action() Calls 'delete_transient_$transient' hook before transient is deleted.
  * @uses do_action() Calls 'deleted_transient' hook on success.
  *
  * @param string $transient Transient name. Expected to not be SQL-escaped.
  * @return bool true if successful, false otherwise
  */
 function yit_delete_transient( $transient ) {
     return yit_get_model( 'transient' )->delete_transient( $transient );
 }
开发者ID:simonsays88,项目名称:costa,代码行数:16,代码来源:Transient.php


示例10: yit_light_or_dark

 /**
  * Detect if we must use a color darker or lighter then the background.
  * 
  * @param   string  $color
  * @param   string  $dark
  * @param   string  $light
  * @return  string
  * @since   1.0
  * @author Andrea Grillo <[email protected]>
  */
 function yit_light_or_dark($color, $dark = '#000000', $light = '#FFFFFF')
 {
     return yit_get_model('colors')->light_or_dark($color, $dark, $light);
 }
开发者ID:lieison,项目名称:IndustriasFenix,代码行数:14,代码来源:Colors.php


示例11: start_el


//.........这里部分代码省略.........
					</label>
				</p>
				<p class="field-description description description-wide">
					<label for="edit-menu-item-description-<?php 
        echo $item_id;
        ?>
">
						<?php 
        _e('Description', 'yit');
        ?>
<br />
						<textarea id="edit-menu-item-description-<?php 
        echo $item_id;
        ?>
" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php 
        echo $item_id;
        ?>
]"><?php 
        echo esc_html($item->description);
        // textarea_escaped
        ?>
</textarea>
						<span class="description"><?php 
        _e('The description will be displayed in the menu if the current theme supports it.', 'yit');
        ?>
</span>
					</label>
				</p>



				<!-- custom code -->
				<?php 
        $custom_fields = yit_get_model('nav_menu')->fields;
        ?>
				<?php 
        if (!empty($custom_fields)) {
            ?>
				<div class="clear"></div>
				<p style="margin-top: 20px"><strong><?php 
            _e('Customize menu', 'yit');
            ?>
</strong></p>


				<?php 
            foreach ($custom_fields as $id => $field) {
                ?>
				<p class="description description-<?php 
                echo $field['width'];
                ?>
">	
					<label for="edit-menu-item-<?php 
                echo $id;
                ?>
-<?php 
                echo $item_id;
                ?>
">
						<?php 
                _e($field['label'], 'yit');
                ?>
						
						<?php 
           

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP yit_get_option函数代码示例发布时间:2022-05-23
下一篇:
PHP yit_get_icon函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap