當前位置: 首頁>>代碼示例>>PHP>>正文


PHP vc_taxonomies_types函數代碼示例

本文整理匯總了PHP中vc_taxonomies_types函數的典型用法代碼示例。如果您正苦於以下問題:PHP vc_taxonomies_types函數的具體用法?PHP vc_taxonomies_types怎麽用?PHP vc_taxonomies_types使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了vc_taxonomies_types函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: vc_autocomplete_categ_field_render

function vc_autocomplete_categ_field_render($term)
{
    $vc_taxonomies_types = vc_taxonomies_types();
    $terms = get_categories(array('include' => array($term['value']), 'hide_empty' => false));
    $data = false;
    if (is_array($terms) && 1 === count($terms)) {
        $term = $terms[0];
        $data = vc_get_term_object($term);
    }
    return $data;
}
開發者ID:AlchemyMomentum,項目名稱:public_html,代碼行數:11,代碼來源:creativo-elements.php

示例2: vc_autocomplete_taxonomies_field_search

/**
 * @since 4.5.2
 *
 * @param $search_string
 *
 * @return array|bool
 */
function vc_autocomplete_taxonomies_field_search($search_string)
{
    $data = array();
    $vc_filter_by = vc_post_param('vc_filter_by', '');
    $vc_taxonomies_types = strlen($vc_filter_by) > 0 ? array($vc_filter_by) : array_keys(vc_taxonomies_types());
    $vc_taxonomies = get_terms($vc_taxonomies_types, array('hide_empty' => false, 'search' => $search_string));
    if (is_array($vc_taxonomies) && !empty($vc_taxonomies)) {
        foreach ($vc_taxonomies as $t) {
            if (is_object($t)) {
                $data[] = vc_get_term_object($t);
            }
        }
    }
    return $data;
}
開發者ID:k2jysy,項目名稱:wedev,代碼行數:22,代碼來源:vc-grids-functions.php

示例3: vc_get_term_object

/**
 * Since
 *
 * @since 4.5.3
 *
 * @param $term
 *
 * @return array
 */
function vc_get_term_object($term)
{
    $vc_taxonomies_types = vc_taxonomies_types();
    return array('label' => $term->name, 'value' => $term->term_id, 'group_id' => $term->taxonomy, 'group' => isset($vc_taxonomies_types[$term->taxonomy], $vc_taxonomies_types[$term->taxonomy]->labels, $vc_taxonomies_types[$term->taxonomy]->labels->name) ? $vc_taxonomies_types[$term->taxonomy]->labels->name : __('Taxonomies', 'js_composer'));
}
開發者ID:JPodz,項目名稱:harlequinnejuice,代碼行數:14,代碼來源:helpers.php

示例4: vc_autocomplete_taxonomies_field_search

/**
 * @since 4.5.2
 *
 * @param $search_string
 *
 * @return array|bool
 */
function vc_autocomplete_taxonomies_field_search($search_string)
{
    $data = array();
    $vc_taxonomies_types = vc_taxonomies_types();
    $vc_taxonomies = get_terms(array_keys($vc_taxonomies_types), array('hide_empty' => false, 'search' => $search_string));
    if (is_array($vc_taxonomies) && !empty($vc_taxonomies)) {
        foreach ($vc_taxonomies as $t) {
            if (is_object($t)) {
                $data[] = vc_get_term_object($t);
            }
        }
    }
    return $data;
}
開發者ID:nikintharan,項目名稱:campaign,代碼行數:21,代碼來源:map.php

示例5: get_post_types

$post_types = get_post_types(array());
$post_types_list = array();
$excluded_post_types = array('revision', 'nav_menu_item', 'vc_grid_item');
if (is_array($post_types) && !empty($post_types)) {
    foreach ($post_types as $post_type) {
        if (!in_array($post_type, $excluded_post_types)) {
            $label = ucfirst($post_type);
            $post_types_list[] = array($post_type, $label);
        }
    }
}
$post_types_list[] = array('custom', __('Custom query', 'js_composer'));
$post_types_list[] = array('ids', __('List of IDs', 'js_composer'));
$taxonomies_for_filter = array();
if ('vc_edit_form' === vc_post_param('action')) {
    $vc_taxonomies_types = vc_taxonomies_types();
    if (is_array($vc_taxonomies_types) && !empty($vc_taxonomies_types)) {
        foreach ($vc_taxonomies_types as $t => $data) {
            if ('post_format' !== $t && is_object($data)) {
                $taxonomies_for_filter[$data->labels->name] = $t;
            }
        }
    }
}
$grid_cols_list = array(array('label' => '6', 'value' => 2), array('label' => '4', 'value' => 3), array('label' => '3', 'value' => 4), array('label' => '2', 'value' => 6), array('label' => '1', 'value' => 12));
$btn3_params = vc_map_integrate_shortcode('vc_btn', 'btn_', __('Load More Button', 'js_composer'), array('exclude' => array('link', 'css', 'el_class', 'css_animation')), array('element' => 'style', 'value' => array('load-more')));
foreach ($btn3_params as $key => $value) {
    if ('btn_title' == $value['param_name']) {
        $btn3_params[$key]['value'] = __('Load more', 'js_composer');
    } else {
        if ('btn_color' == $value['param_name']) {
開發者ID:websideas,項目名稱:aquila,代碼行數:31,代碼來源:vc-grids-common.php


注:本文中的vc_taxonomies_types函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。