编程语言
首页 > 编程语言> > php – 限制diplayed的分类术语数量

php – 限制diplayed的分类术语数量

作者:互联网

我有2个分类集product_cat和tvshows_cat.每套有12个术语.

一个产品最多可以有12个术语(但不能同时使用2个).

我使用此代码在产品页面中显示术语列表:

$cats = get_the_term_list($post->ID, 'product_cat', '', '  ', ''); 
$tvcats = get_the_term_list($post->ID, 'tvshows_cat', '', '  ', ''); 

if (!empty($cats)){
    echo strip_tags($cats, '   ');
}elseif(!empty($tvcats)){
    echo strip_tags($tvcats, '    ');
}

结果是:

Action, Drama, Adventure, Biography, Animation

问题是,在某些情况下,没有足够的空间来显示所有术语.

我需要将条款数量限制为2个条款.

题:

如何限制应用于两个的术语数量?

谢谢

解决方法:

Instead using get_the_term_list() function, you should use get_the_terms() which will give you directly an array of terms objects (as get_the_term_list() is using get_the_terms() herself if you look to the source code of the function).

然后你可以构建一个自定义函数来获得你想要的东西(我不会使用implode()函数或任何其他一个php函数,因为我们只需要2个术语.)

注意:这里不需要strip_tags()函数

所以你的代码将是:

// This function goes first
function get_my_terms( $post_id, $taxonomy ){
    $cats = get_the_terms( $post_id, $taxonomy );

    foreach($cats as $cat) $cats_arr[] = $cat->name;

    if ( count($cats_arr) > 1) $cats_str = $cats_arr[0] . ', ' . $cats_arr[1]; // return first 2 terms
    elseif ( count($cats_arr) == 1) $cats_str = $cats_arr[0]; // return one term
    else $cats_str = '';

    return $cats_str;
}

此代码位于活动子主题(或主题)的function.php文件或任何插件文件中…

然后下面是你的代码:

$cats = get_my_terms( $post->ID, 'product_cat' ); 
$tvcats = get_my_terms( $post->ID, 'tvshows_cat' ); 

// Displaying 2 categories terms max
echo $cats . $tvcats;

这段代码放在你的php模板文件中

— update — (related to author comment)

或者没有功能,您的代码将是:

// Product categories
$cats = get_the_terms( $post->ID, 'product_cat' );

foreach($cats as $cat) $cats_arr[] = $cat->name;

if ( count($cats_arr) > 1) $cats_str = $cats_arr[0] . ', ' . $cats_arr[1]; // return first 2 terms
elseif ( count($cats_arr) == 1) $cats_str = $cats_arr[0]; // return one term
else $cats_str = '';

// TV shows categories
$tvcats = get_the_terms( $post->ID, 'tvshows_cat' );

foreach($tvcats as $tvcat) $tvcat_arr[] = $tvcat->name;

if ( count($tvcat_arr) > 1) $tvcats_str = $tvcat_arr[0] . ', ' . $tvcat_arr[1]; // return first 2 terms
elseif ( count($tvcat_arr) == 1) $tvcats_str = $tvcat_arr[0]; // return one term
else $tvcats_str = '';

// The Display of 2 categories
echo $cats_str . $tvcats_str;

这段代码放在你的php模板文件中

此代码经过测试和运行.

标签:wordpress,php,woocommerce,categories,custom-taxonomy
来源: https://codeday.me/bug/20190715/1465480.html