$server = $_SERVER['REMOTE_ADDR'];
$rrs = file_get_contents("http://api.sypexgeo.net/json/" . $server);
$obj = json_decode($rrs);
print_r($obj);//Здесь хранятся необходимые данные. Выбирай что нужно - страна, регион, город.
add_action('init', 'myStartSession', 1);
add_action('wp_logout', 'myEndSession');
add_action('wp_login', 'myEndSession');
function myStartSession() {
if(!session_id()) {
session_start();
}
}
function myEndSession() {
session_destroy ();
}
//сохраняем
$_SESSION['city'] = 'Город';
//Получаем
if(isset($_SESSION['city'])) {
$city = $_SESSION['city'];
} else {
$city= '';
}
add_action('wp_print_styles', 'add_my_stylesheet');
function add_my_stylesheet() {
$path = get_bloginfo('template_directory') . "/"; //Получаю url к папке с темой
wp_register_style('themeStyle', $path . 'style.css');//Регистрирую таблицу
wp_enqueue_style('themeStyle');//включаю
}
add_action('wp_enqueue_scripts', 'add_my_scripts');
function add_my_scripts() {
$path = get_bloginfo('template_directory') . "/";//Получаю url к папке с темой
if (!is_admin()) {//если не в админке
wp_deregister_script('jquery');//Убираем вывод jquery, rкоторый идет с WP
wp_register_script('jquery', ($path . "js/jquery-1.11.3.min.js"), false, '1.11.3');//Регистрируем свой jquery
wp_enqueue_script('jquery');//Включаем его
}
wp_register_script('commonJS', ($path . "js/common.js"), array('jquery'));//Регистрируем свой скрипт, и указываем что для него необходим скрипт jquery
wp_enqueue_script('commonJS');//Включаем скрипт
wp_localize_script('commonJS', 'myajax', array(//Это способ передачи php значение в js.Т.е. перед выводом commonJs создадутся js переменные.
'url' => admin_url('admin-ajax.php'),
'nonce' => wp_create_nonce('myajax-nonce'),
)
);
}
<?php
$images = twp_get_post_images(get_the_ID());
foreach ($images as $im) {
$thumb_url = wp_get_attachment_image_src($im->id, 'thumbnail-size', true);
?>
<a href="<?php echo $thumb_url[0]; ?>" class="fancybox" rel="group">
<img src="<?php echo $thumb_url[0]; ?>">
</a>
<?php
}
?>
<div id="introR" class="super_back"><canvas id="pollyfill-canvas"></canvas></div>
<form action="куда направить скрипт" method="post или get">
<input type="text" name="" value="" placeholder="Поиск по сайту...">
<input type="button" name="" value="Найти">
</form>
<form method="get" action="httt://site.ru/">
<input type="text" name="searchid" value="0000000">
<input type="text" name="text" value="hello">
<input type="text" name="web" value="0">
<input type="submit" value="Отправить">
</form>
<?php echo apply_filters('the_content', '[yith_woocommerce_ajax_search]'); ?>
<?php echo do_shortcode( '[yith_woocommerce_ajax_search]'); ?>