wc_get_template( 'single-product/rating.php' );
add_action('нужный хук', 'woocommerce_template_single_rating' , приоритет);
3 тарифа( 3000, 5000, 10000)это тупо - товары продаваемые на сайте.
add_action( 'woocommerce_product_after_variable_attributes', 'cr_variable_fields', 10, 3 );
add_action( 'woocommerce_product_after_variable_attributes_js', 'cr_variable_fields_js' );
add_action( 'woocommerce_process_product_meta_variable', 'save_cr_variable_fields', 10, 1 );
/**
* Создает новое поле
*/
function cr_variable_fields( $loop, $variation_data, $variation ) {
?>
<tr>
<td>
<?php
woocommerce_wp_text_input(
array(
'id' => '_text_field['.$loop.']',
'label' => __( 'Мое текстовое поле', 'woocommerce' ),
'placeholder' => __( 'Подсказка', 'woocommerce' ),
'desc_tip' => 'true',
'description' => __( 'Введите ваше значение.', 'woocommerce' ),
'value' => get_post_meta( $variation->ID, '_text_field', true )
)
);
?>
</td>
</tr>
<?php
}
/**
* Создает поле нового варианта
*/
function cr_variable_fields_js() {
?>
<tr>
<td>
<?php
woocommerce_wp_text_input(
array(
'id' => '_text_field[ + loop + ]',
'label' => __( 'Мое текстовое поле', 'woocommerce' ),
'placeholder' => __( 'Подсказка', 'woocommerce' ),
'desc_tip' => 'true',
'description' => __( 'Введите ваше значение.', 'woocommerce' ),
'value' => ''
)
);
?>
</td>
</tr>
<?php
}
/**
* Сохраняет поле
*/
function save_cr_variable_fields( $post_id ) {
if (isset( $_POST['variable_sku'] ) ) :
$variable_sku = $_POST['variable_sku'];
$variable_post_id = $_POST['variable_post_id'];
$_text_field = $_POST['_text_field'];
for ( $i = 0; $i < sizeof( $variable_sku ); $i++ ) :
$variation_id = (int) $variable_post_id[$i];
if ( isset( $_text_field[$i] ) ) {
update_post_meta( $variation_id, '_text_field', stripslashes( $_text_field[$i] ) );
}
endfor;
endif;
}
<article id="post-<?php echo $post->ID; ?>" <?php post_class(); ?>>
// содержимое записи
</article>
article.category-foo:before {
width: 30px;
height: 30px;
content: ' ';
background-image: url('%img-url%');
display: block;
position: absolute;
top: -25px;
left: -25px;
}
add_filter('sanitize_file_name', '%ваша функция транслитерации%');
$args = unserialize(stripslashes($_POST['query']));
$args['paged'] = $_POST['page'] + 1; // следующая страница
$args['post_status'] = 'publish';
$first_page_post_count = 9;
$empty_pages_post_count = 8;
if ($args['paged'] > 1) {
$posts_per_page = $empty_pages_post_count;
if ($args['paged'] == 2) {
$offset = $first_page_post_count;
} else {
$offset = $first_page_post_count + ( $empty_pages_post_count * ($args['paged'] - 2));
}
} else {
$offset = 0;
$posts_per_page = $first_page_post_count;
}
$args['posts_per_page'] =>$posts_per_page;
$args['offset'] => $offset;
$q = new WP_Query($args);
<div class="sider_container">
<div class="slide_item">
<?php if( ! empty( $brainiak['opt-slides'] ) ) {
foreach ( $brainiak['opt-slides'] as $val )
echo '<img src="' . $val['image']. '" alt="' . $val['title'] .'" class="img-responsive">';
} ?>
</div>
</div>
printf('<img src="%s" alt="%s" class="img-responsive">', $val['image'], $val['title']);
/**
* Получает ID всех объектов используемых в меню
*
* использование $x = cr_menu_items_ID('primary');
* пример возвращаемых данных
* Array (
* [custom] => Array (
* [0] => 807
* )
* [category] => Array (
* [0] => 2
* [1] => 10
* [2] => 22
* )
* [page] => Array (
* [0] => 74
* )
* [woocommerce] => Array (
* [0] => 54
* [1] => 39
* [2] => 40
* )
* )
*
* @param $menu_id - идентификатор меню
* @return array массив с ID элементов меню где ключом будет выступать тип объекта значением массив с id объектов
*/
function cr_menu_items_ID($menu_id)
{
if (($locations = get_nav_menu_locations()) && isset($locations[$menu_id])) {
$menu = wp_get_nav_menu_object($locations[$menu_id]);
$menu_items = wp_get_nav_menu_items($menu->term_id);
}
foreach ($menu_items as $menu_item) {
// print_r($menu_item);
$numbers[$menu_item->object][] = get_post_meta($menu_item->ID, '_menu_item_object_id', true);
}
return $numbers;
}
if( wp_is_mobile() ) {
echo 'бла бла бла' // бла бла бла будет видно только на мобильных девайсах
}