global $wp_query;
$tabs = apply_filters( 'woocommerce_product_tabs', array() );
<?php call_user_func( $tab['callback'], $key, $tab ); ?>
<?php call_user_func( $tab['callback'], $key, $tab ); ?>
<?php
$recent = 'Сюда нужно разместить запрос';
wp_pagenavi(array('query' => $recent));
?>
$args = array(
'post_type' => 'product',
'meta_query' => array(
array(
'key' => 'color',
'value' => 'blue',
'compare' => 'NOT LIKE'
)
)
);
$query = new WP_Query( $args );
function new_dashboard_home($username, $user){
if(array_key_exists('administrator', $user->caps)){
wp_redirect(admin_url('admin.php, 'http'), 301);
exit;
}
}
add_action('wp_login', 'new_dashboard_home', 10, 2);
function loginRedirect( $redirect_to, $request, $user ){
if( is_array( $user->roles ) ) {
return "/wp-admin/edit.php?post_type=page";
}
}
add_filter("login_redirect", "loginRedirect", 10, 3);
//не хватает аргумента paged
$args = array (
'post_type' => array( 'post' ),
'post_status' => array( 'publish' ),
'posts_per_page' => 24,
);
//Вместо этого должно быть так
$paged = get_query_var('paged', 1);//Получаем номер страницы
$args = array (
'post_type' => array( 'post' ),
'post_status' => array( 'publish' ),
'posts_per_page' => 24,
'paged' => $paged
);
$mes = "Имя: $name \nE-mail: $email \nТелефон: $phone \nТекст: $body";
$send = mail ($address,$phone,$mes,"Content-type:text/plain; charset = UTF-8\r\nFrom:$email");
заменить на
$send = mail ($address,$phone,$mes,"Content-type:text/html; charset = UTF-8\r\nFrom:$email");
<?php
$to = "Mary <mary@example.com>, " ;
$to .= "Kelly <kelly@example.com>";
$subject = "Birthday Reminders for August";
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
</body>
</html>';
$headers = "Content-type: text/html; charset=windows-1251 \r\n";
$headers .= "From: Birthday Reminder <birthday@example.com>\r\n";
$headers .= "Bcc: birthday-archive@example.com\r\n";
mail($to, $subject, $message, $headers);
?>
<ul>
<li>
<a>A</a>
<ul>
<li><a>B</a></li>
<li><a>C</a></li>
<li><a>D</a></li>
</ul>
</li>
<li><a>E</a></li>
<li><a>F</a></li>
</ul>
<a>А</a>
, то у его родительского тега <li>
будет класс .current-menu-item.<a>B</a>
, то у его родительского тега<li>
элемента <a>А</a>
(так как он как бы родитель) будет класс .current-menu-ancestor. $args = array(
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => 'category',//для стандартных категорий
'terms' => 'bob',//slug категории
'include_children' => false//как раз то что нужно
),
),
);
$query = new WP_Query( $args );
if ($query->post_count > 0) { //если у категории посты - выводим их
while ( $query->have_posts() ) {
$query->the_post();
//выводим пост
}
} else {
//выводим подкатегории
}