求解答 woocommerce 店铺页怎样才能调用到分类和它的描述
3个回答
2017-07-26
展开全部
在网上翻到这个,会把所有分类描述都调用出来。
global $post;
$args = array( 'taxonomy' => 'product_cat',);
$terms = wp_get_post_terms($post->ID,'product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo '<div style="direction:rtl;">';
echo $term->description;
echo '</div>';
global $post;
$args = array( 'taxonomy' => 'product_cat',);
$terms = wp_get_post_terms($post->ID,'product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo '<div style="direction:rtl;">';
echo $term->description;
echo '</div>';
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-07-25
展开全部
$args = array( 'taxonomy' => 'product_cat' );
$terms = get_terms('product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo $term->description;
}
}
在网上翻到这个,会把所有分类描述都调用出来。
global $post;
$args = array( 'taxonomy' => 'product_cat',);
$terms = wp_get_post_terms($post->ID,'product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo '<div style="direction:rtl;">';
echo $term->description;
echo '</div>';
}
}
$terms = get_terms('product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo $term->description;
}
}
在网上翻到这个,会把所有分类描述都调用出来。
global $post;
$args = array( 'taxonomy' => 'product_cat',);
$terms = wp_get_post_terms($post->ID,'product_cat', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo '<div style="direction:rtl;">';
echo $term->description;
echo '</div>';
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-07-25
展开全部
在大多数情况下,大多数WordPress主题WooCommerce模板将很好地结合起来。在某些情况下,WooCommerce内容包装不符合您所选择的主题。这将体现本身WooCommerce页面上,打破布局你的侧边栏转移到不正确的位置。
这个问题可能会影响WooCommerce的店铺页面,单品页,分类页(类别和标签),因为使用自己的模板,以显示这些页面(及其WooCommerce不可能确切地知道什么标记您的主题使用)。其他“页”(购物车,结账时,帐户)不会受到影响,因为他们使用你的主题的page.php模板。
有两种方法来解决这个问题,使用hooks(先进的用户/开发),或你的主题包含所有 woocommerce_content()函数里面。
这个问题可能会影响WooCommerce的店铺页面,单品页,分类页(类别和标签),因为使用自己的模板,以显示这些页面(及其WooCommerce不可能确切地知道什么标记您的主题使用)。其他“页”(购物车,结账时,帐户)不会受到影响,因为他们使用你的主题的page.php模板。
有两种方法来解决这个问题,使用hooks(先进的用户/开发),或你的主题包含所有 woocommerce_content()函数里面。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询