wordpress共193篇 第10页
wordpress插件、主题、代码、教程、hook钩子、过滤钩子等。
批量替换wordpress文章中的字段-KEKC博客

批量替换wordpress文章中的字段

示例,批量修改woocommerce产品中的排序字段为0: $args = array( 'numberposts' => -1, 'post_type' => 'product', 'post_status' => 'any', 'product_tag' => 'aaa', ); $postslists = get_pos...
KEKC的头像-KEKC博客KEKC1年前
7313

空购物车的提示

add_filter('wfacp_cart_empty_message',function(){ $shop_url = get_permalink( wc_get_page_id( 'shop' ) ); return __( 'Your cart is currently empty.<a href='.$shop_url.'>Click Her...
KEKC的头像-KEKC博客KEKC1年前
6213

WooCommerce在结账页、购物车中显示产品图片

代码如下: // 结账页产品图片显示 add_filter( 'woocommerce_cart_item_name', 'product_thumbnail_in_checkout', 20, 3 ); function product_thumbnail_in_checkout( $product_name, $cart_it...
KEKC的头像-KEKC博客KEKC7个月前
0617

WooCommerce动作钩子woocommerce_after_checkout_validation失效

WooCommerce新版块状结账页(checkout)已将请求由wc-ajax转变为wp-json,这使得woocommerce_after_checkout_validation一众钩子彻底失效,我在使用时发现已无法使用,切换为经典页面时又能继续...
KEKC的头像-KEKC博客KEKC5个月前
0576