<?php
add_action('woocommerce_before_shop_loop', 'table_loop_head',40);
function table_loop_head( ) {
?>
<table class="loop_table loop" cellspacing="0">
<thead>
<tr>
<th class="product_table"><?php _e( 'Товар', 'woocommerce' ); ?></th>
<th class="product_table"><?php _e( 'Категория', 'woocommerce' ); ?></th>
<th class="product_table"><?php _e( 'Тип', 'woocommerce' ); ?></th>
<th class="product_table"><?php _e( 'Производитель', 'woocommerce' ); ?></th>
<th class="product_table"><?php _e( 'Цена', 'woocommerce' ); ?></th>
<th class="product-table"> </th>
</tr>
</thead>
<tbody>
<?php
}
add_action('woocommerce_after_shop_loop', 'table_loop_closetag',9);
function table_loop_closetag( ) {
?>
</tbody></table>
<?php
} ?>
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product;
// Ensure visibility
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
?>
<li <?php post_class(); ?>>
<?php
do_action( 'woocommerce_before_shop_loop_item' );
<tr>
<td class="product_table"><a href="<?php the_permalink() ?>" ><?php the_title(); ?></a></td> // Наименование
<td class="product_table"><?php echo ($product->get_attribute( 'cat' )); ?></td> // Категория
<td class="product_table"><?php echo ($product->get_attribute( 'type' )); ?></td> // Тип товара
<td class="product_table"><?php echo ($product->get_attribute( 'vendor' )); ?></td> // Производитель
<td class="product_table"><?php do_action( 'woocommerce_after_shop_loop_item_title' ); ?></td> // Цена
<td class="product-table"><?php do_action( 'woocommerce_after_shop_loop_item' ); ?></td> // Кнопка "Добавить в корзину"
</tr>
?>
</li>
Parse error: syntax error, unexpected '<', expecting end of file in ../content-product.php on line 34