<table class="woocommerce-product-attributes shop_attributes">
<?php foreach ( $product_attributes as $product_attribute_key => $product_attribute ) : ?>
<tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--<?php echo esc_attr( $product_attribute_key ); ?>">
<th class="woocommerce-product-attributes-item__label"><?php echo wp_kses_post( $product_attribute['label'] ); ?></th>
<td class="woocommerce-product-attributes-item__value"><?php echo wp_kses_post( $product_attribute['value'] ); ?></td>
</tr>
<?php endforeach; ?>
</table>
add_action('wp_enqueue_scripts', function () {
wp_enqueue_style('style-name', get_template_directory_uri() . '/assets/css/style.min.css');
if (is_shop()) :
wp_enqueue_script('app', get_template_directory_uri() . '/assets/js/app.js', array(), '1.0.0', true);
// echo 'archive';
endif ;
if (is_product()) :
// echo 'single';
//wp_deregister_script( 'app', get_template_directory_uri() . '/assets/js/app.js');
wp_enqueue_script('main', get_template_directory_uri() . '/assets/js/main.js', array(), '1.0.0', true);
endif ;
// wp_enqueue_script('script-name', get_template_directory_uri() . '/assets/js/app.js', array(), '1.0.0', true);
});
Но при этом все равно нужно получается,чтобы узнать когда именно он обновился,через веб сокет проверять,правильно понял?