CSS
5
Вклад в тег
<?php $user_agent = "Нужный юзер агент"; ?>
<?php if(strpos($_SERVER['HTTP_USER_AGENT'], $user_agent)):?>
<meta http-equiv="refresh" content="1;URL=http:/site.ru">
<?php exit(); endif;?>
<ul>
<?php
$catalog_orderby = apply_filters( 'woocommerce_catalog_orderby', array(
'menu_order' => __( 'Default sorting', 'woocommerce' ),
'price' => __( 'Sort by price: low to high', 'woocommerce' ),
'price-desc' => __( 'Sort by price: high to low', 'woocommerce' )
) );
if ( get_option( 'woocommerce_enable_review_rating' ) == 'no' )
unset( $catalog_orderby['rating'] );
foreach ( $catalog_orderby as $id => $name )
echo '<li><a href="' . get_permalink( woocommerce_get_page_id( 'shop' ) ) . '?orderby=' . $id . '" >' . esc_attr( $name ) . '</a></li>';
?>
</ul>
<div class=“boxes”>
<div class=“box”>
<div class=“box”>
<div class=“box”>
<div class=“box”>
<div class=“box”>
<div class=“box”>
<div class=“box”>
<div class=“box”>
</div>
.boxes{display:flex;flex-wrap:wrap;}
.box{width:25%;}/* таким образом выводим по 4 в линии */