add_filter('woocommerce_order_status_changed', 'my_custom_function', 10, 4 );
function my_custom_function( $order_id, $old_status, $new_status, $order ) {
// ... ваш PHP код
}
let responsiveUnder = 1000;
if ( window.screen.width < 900 ) {
responsiveUnder = 900;
// ...
}
function getMyHTML(className) {
return `<td class="${className}">...</td>`;
}
const my_html = getMyHTML("flags");