add_action('wpcf7_mail_sent', 'wpcf7mailsent_redirect');
function wpcf7mailsent_redirect() {
if ( 'wpcf7_mail_sent' == true ) {
$new_url = 'https://ya.ru';
header('Location: '.$new_url);
exit();
}
}
$images = array();
foreach ( get_field('gallery_game_img') as $image) {
$images[] = $image['url'];
}
'game_img_main' => get_field('game_img_main')
html = '';
for (i = 0; i < data['results'].length; i++) {
html_img = '';
if(data['results'][i]['gallery_game_img']) {
//html_img = JSON.parse(data['results'][i]['gallery_game_img']);
html_img = '["'+data['results'][i]['gallery_game_img'].join('","')+'"]';
console.log(html_img)
}
data-slides="'+html_img+'"
add_action('init', 'my_custom_init');
function my_custom_init(){
register_post_type('book', array(
'labels' => array(
'name' => 'Книги', // Основное название типа записи
'singular_name' => 'Книга', // отдельное название записи типа Book
'add_new' => 'Добавить новую',
'add_new_item' => 'Добавить новую книгу',
'edit_item' => 'Редактировать книгу',
'new_item' => 'Новая книга',
'view_item' => 'Посмотреть книгу',
'search_items' => 'Найти книгу',
'not_found' => 'Книг не найдено',
'not_found_in_trash' => 'В корзине книг не найдено',
'parent_item_colon' => '',
'menu_name' => 'Книги'
),
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title','editor','author','thumbnail','excerpt','comments')
) );
}
// Мой первый фильтр
add_filter ('nav_menu_link_attributes', 'filter_nav_menu_link_attributes', 10,3);
function filter_nav_menu_link_attributes ( $atts, $item, $args) {
if ($args->menu === 'Main') {
$atts['class'] = 'header__nav-item';
if ( $item->current) {
$atts['class'] .= 'header__nav-item-active';
}
}
}
add_action( 'wp_enqueue_scripts', 'include_custom_scripts' );
function include_custom_scripts() {
wp_enqueue_script( 'maskedinput', get_stylesheet_directory_uri() . '/js/jquery.maskedinput.min.js', array('jquery'), null, true );
if ( is_page( 422 ) ) {
wp_enqueue_script( 'custom', get_stylesheet_directory_uri() . '/js/jscalc/custom.js', array('jquery'), null, true );
}
}