gpt4 book ai didi

javascript - 如何在 wordpress 条件下使用 PHP/Javascript if/else 隐藏类?

转载 作者:行者123 更新时间:2023-11-29 18:38:46 25 4
gpt4 key购买 nike

我在 Wordpress 函数的条件 (if/else) 方面遇到了一些问题。我需要隐藏这个 <span class="xs-item-count highlight xscart"><?php echo esc_html($xs_product_count); ?></span>如果值 $xs_product_count在购物车上为 0。我该怎么办?

我尝试使用 PHP Native,但我的网站出现错误。

我的元素代码是:

<a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class ="mobile-cart-notif offset-cart-menu">
<span class="xs-item-count highlight xscart">
<?php echo esc_html($xs_product_count); ?>
</span>
<i class="icon icon-bag"></i>
</a>

最佳答案

我会试试这个:

<a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="mobile-cart-notif offset-cart-menu">
<?php if ((int) $xs_product_count > 0) : ?>
<span class="xs-item-count highlight xscart">
<?php echo esc_html($xs_product_count); ?>
</span>
<?php endif; ?>
<i class="icon icon-bag"></i>
</a>

if 语句中将 (int) 放在 $xs_product_count 前面称为“casting”变量类型,它会将 '0' 的字符串更改为整数 0,这让我们可以可靠地与 > 运算符进行比较。

关于javascript - 如何在 wordpress 条件下使用 PHP/Javascript if/else 隐藏类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58696814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com