本文整理汇总了PHP中yit_get_model函数的典型用法代码示例。如果您正苦于以下问题:PHP yit_get_model函数的具体用法?PHP yit_get_model怎么用?PHP yit_get_model使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了yit_get_model函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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'));
}
}
示例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)));
}
示例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']);
}
}
示例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
}
示例5: 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
}
示例6: 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();
}
示例7: 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'];
示例8: 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 );
}
示例9: 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 <andrea.grillo@yithemes.com>
*/
function yit_light_or_dark($color, $dark = '#000000', $light = '#FFFFFF')
{
return yit_get_model('colors')->light_or_dark($color, $dark, $light);
}
示例10: 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
if ($field['type'] == 'input') {
?>
示例11: _e
_e('Filter Shortcodes', 'yit');
?>
" />
</div>
<div id="shortcode-back">
<label class="shortcode-back"><?php
_e('Back to shortcodes list', 'yit');
?>
</label>
</div>
<div id="media-shortcodes">
<?php
$tabs = '';
foreach (yit_get_model('shortcodes')->shortcodes as $shortcode => $atts) {
?>
<?php
if (!isset($atts['hide'])) {
?>
<div class="shortcode <?php
echo $atts['tab'];
?>
" id="shortcode-<?php
echo $shortcode;
?>
" title="<?php
echo $atts['description'];
?>
">
<img src="<?php
示例12: yit_get_model
<?php
/**
* Your Inspiration Themes
*
* @package WordPress
* @subpackage Your Inspiration Themes
* @author Your Inspiration Themes Team <info@yithemes.com>
*
* 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
*/
$var['posts_per_page'] = -1;
yit_get_model('portfolio')->shortcode_atts = $var;
yit_set_portfolio_loop($portfolio);
$sidebar_layout = yit_get_sidebar_layout();
$postsPerRow = $sidebar_layout != 'sidebar-no' ? 3 : 4;
$sp_span_class = "span" . ($sidebar_layout != 'sidebar-no' ? '3' : '3');
$sp_span_class_max = "span" . ($sidebar_layout != 'sidebar-no' ? '9' : '12');
$thumbSize = $sidebar_layout != 'sidebar-no' ? 'section_portfolio_sidebar' : 'section_portfolio';
$i = 0;
$item_selected = 0;
?>
<div class="section portfolio"><!-- section blog wrapper -->
<?php
if (!empty($title)) {
yit_string('<h3 class="title">', $title, '</h3>');
}
示例13: yit_add_google_font
/**
* Save the file with all css
*
* @return bool
* @since 1.0.0
*/
function yit_add_google_font($font)
{
yit_get_model('google_font')->add_google_font($font);
}
示例14: yit_add_message
/**
* Add the message to the system
*
* @since 1.0.0
*/
function yit_add_message($message, $type, $region, $clean = false)
{
yit_get_model('message')->addMessage($message, $type, $region, $clean);
}
示例15: yit_metaboxes_sep
/**
* Add the separator between metaboxes
*
* @param string $metabox_id
* @param string $tab
* @return void
* @since 1.0.0
*/
function yit_metaboxes_sep($metabox_id, $tab)
{
$metabox = yit_get_model('metabox');
$metabox->add_option_metabox($metabox_id, $tab, microtime(), 'sep', array());
}