打开主题的功能。php并添加以下内容
add_action( \'woocommerce_shortcode_before_products_loop\', \'roka_before_products_shortcode_loop\', 1, 10 );
add_action( \'woocommerce_shortcode_after_products_loop\', \'roka_after_products_shortcode_loop\', 0, 10 );
function roka_before_products_shortcode_loop( $atts ) {
$GLOBALS[ \'roka_woocommerce_loop_template\' ] =
( isset( $atts[ \'class\' ] ) ? $atts[ \'class\' ] : \'\' );
}
function roka_after_products_shortcode_loop( $atts ) {
$GLOBALS[ \'roka_woocommerce_loop_template\' ] = \'\';
}
然后覆盖该文件
content-product.php
通过将其复制到主题的
woocommerce
文件夹
查找线路<li <?php post_class(); ?>>
然后添加以下内容:
<?php
if(
isset( $GLOBALS[ \'roka_woocommerce_loop_template\' ] ) &&
$GLOBALS[ \'roka_woocommerce_loop_template\' ] == \'simple-list\'
) {
echo \'<a href="\' . get_the_permalink() . \'">\' . get_the_title() . \'</a>\';
return;
}
?>