一段显示全一部分类的php代码 想改成显示特定的分类 求帮改下 谢了
程序员文章站
2024-04-03 14:29:40
...
一段显示全部分类的php代码 想改成显示特定的分类 求帮改下 谢了
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
function get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() ) {
foreach ( $terms as $key => $term ) {
$new_terms[] = $term;
}
$terms = $new_terms;
}
return $terms;
}
这段是现在的代码 我数据库里有一个表有一个字段是term_id 我已经把需要显示的分类的term_id存在了$duqu里面 我想问下 怎么把这个变量插到上面的代码里面可以只显示那些被选出来的term_id的分类呢 谢谢了
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
function get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() ) {
foreach ( $terms as $key => $term ) {
$new_terms[] = $term;
}
$terms = $new_terms;
}
return $terms;
}
这段是现在的代码 我数据库里有一个表有一个字段是term_id 我已经把需要显示的分类的term_id存在了$duqu里面 我想问下 怎么把这个变量插到上面的代码里面可以只显示那些被选出来的term_id的分类呢 谢谢了
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: wordpress有关问题
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论