function my_modify_query( $query ) {
// это главный запрос, мы не в админке, мы на архивной странице
if ( $query->is_main_query() && ! is_admin() && is_archive() ) {
// конкретный пост по его ID
$query->set( 'post__in', array(345) );
// Устанавливать можно любые свойства объекта WP_Query
}
}
add_action( 'pre_get_posts', 'my_modify_query' );
<button class="btn" data-hover-text="hello, world!!"></button>
.btn {
border: 0;
background: green;
display: inline-block;
width: 3em;
height: 3em;
border-radius: 1.5em;
overflow: hidden;
transition: width 0.2s linear;
}
.btn::before {
display: inline-flex;
width: 100%;
height: 100%;
color: white;
justify-content: center;
align-items: center;
white-space: nowrap;
transition: letter-spacing 0.2s linear;
letter-spacing: -2px;
content: ">";
}
.btn:hover {
width: 10em;
}
.btn:hover::before {
letter-spacing: 0px;
content: attr(data-hover-text);
}
$(document).ready(function(){
$('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');
$(this).addClass('current').siblings().removeClass('current');
$("#"+tab_id).addClass('current').siblings().removeClass('current');
})
})
if (!empty($_POST['username'])) {
echo $_POST['username'];
} else {
echo 'net'
}
$recepient = "index@mail.ru";
$sitename = "Butik";
$email= trim($_POST["email"]);
$message = "Телефон: $email";
$pagetitle = "Новая заявка с сайта \"$sitename\"";
mail($recepient, $pagetitle, $message, "Content-type: text/plain; charset=\"utf-8\"\n From: $recepient");
if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
mail(
$email,
'Thank you!',
'Thank you! \r\n We will call you back now! Wait.', // ваш шаблон письма
"Content-type: text/plain; charset=\"utf-8\"\n From: $recepient"
);
}