php 在WooCommerce中为CSS Grid更改循环或不浮动:这将作为主题中的单独文件包含在内。如果你这样做,b

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在WooCommerce中为CSS Grid更改循环或不浮动:这将作为主题中的单独文件包含在内。如果你这样做,b相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Theme Name
 *
 * Adds the required WooCommerce setup functions to the Theme Name
 *
 * @package       Your Package
 * @author        Your Name
 * @license       GPLv3 or later
 * @license uri   https://www.gnu.org/licenses/gpl-3.0.en.html
 * @version       1.0.0
 */
 
 
if( ! defined( 'ABSPATH' ) ) exit;


add_theme_support( 'woocommerce' ); 
add_theme_support( 'genesis-connect-woocommerce' ); 


//* Check for WooCommerce, exit if not active
if ( ! class_exists( 'WooCommerce' ) ) return;



/** 
 * Add Custom WooCommerce Loop Start
 */
function woocommerce_product_loop_start( $echo = true ) {
	ob_start();
	echo '<ul class="woo-products">'; 
	if ( $echo ):
		echo ob_get_clean();
	else:
		return ob_get_clean();
	endif;
}


/** 
 * Add Custom WooCommerce Loop End
 */
function woocommerce_product_loop_end( $echo = true ) {
	ob_start();
	echo '</ul>'; 
	if ( $echo ) :
		echo ob_get_clean();
	else:
		return ob_get_clean();
	endif;	
}

以上是关于php 在WooCommerce中为CSS Grid更改循环或不浮动:这将作为主题中的单独文件包含在内。如果你这样做,b的主要内容,如果未能解决你的问题,请参考以下文章

在Woocommerce中为特定产品类别使用自定义单一产品模板

如何在 WooCommerce 中为自定义产品数据选项卡定义图标

WooCommerce- 画布/绘画的 SizeInfo 按钮。 [PHP,Javascript,html,css]

在 WooCommerce 3.0+ 中为简短描述添加属性

在 WooCommerce 中为新客户订单添加订单备注

如何在 WooCommerce 中为正常价格和促销价格添加后缀?