<?php
$category_data = $wp_query->get_queried_object();
?>
<div class="content_page">
<h1><?php
$h1 = get_field('h1', $category_data);
if (strlen($h1) > 0){
print $h1;
} else {
print $category_data->cat_name;
}
?></h1>
<div class="category-entries">
<?php
while (have_posts()):
the_post();
?>
<div class="category-entry entry-<?php print $post->ID; ?>">
<div class="entry__inner">
<div class="entry__row">
<h2 class="entry__name"><?php print $post->post_title; ?></h2>
<span class="entry_date"><?php print get_the_date('j.m.Y'); ?></span>
</div>
<div class="entry__content">
<?php the_excerpt(); ?>
</div>
</div>
</div>
<?php
endwhile;
wp_reset_query();
wp_reset_postdata();
// Перезаписываем свойство в основном цикле, чтобы избежать ошибочной пагинации
$GLOBALS['wp_query']->max_num_pages = $towns->max_num_pages;
?>
</div>
</div>
# детектим домашнюю страницу, затем если нет куки-маркера, сообщающей о том что мы уже отдавали ресурс
# устанавливаем флаг PC_DO_PUSH_LCP
SetEnvIf Request_URI "^(/)$" HOME_PAGE=1
RewriteCond %{ENV:HOME_PAGE} 1
RewriteCond %{HTTP_COOKIE} !^.*lcp_pc_pushed=true.*$ [NC]
RewriteRule .* - [E=PC_DO_PUSH_LCP:1]
# Устанавливаем куку-маркер и отдаём ресурс, если установлена PC_DO_PUSH_LCP и =1
Header add Set-Cookie "lcp_pc_pushed=true; Max-Age=1200; Path=/" env=PC_DO_PUSH_LCP
Header add Link "</lcp.webp>;rel=preload;as=image" env=PC_DO_PUSH_LCP
Выносите вычисления в отдельные(фоновые) потоки через webworker
map $http_cookie $res_pushed {
default "false";
"~*res_pushed" "true"; # Если есть кука res_pushed с любым значением, создаём $res_pushed = true. Иначе false.
}
server {
server_name site.su www.site.su;
charset off;
index index.php index.html;
disable_symlinks if_not_owner from=$root_path;
include /etc/nginx/vhosts-includes/*.conf;
include /etc/nginx/vhosts-resources/site.su/*.conf;
access_log /var/www/httpd-logs/site.su.access.log;
error_log /var/www/httpd-logs/site.su.error.log notice;
ssi on;
set $root_path /var/www/www-root/data/www/site.su;
root $root_path;
gzip on;
gzip_comp_level 5;
gzip_disable "msie6";
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;
http2_push_preload on;
location / {
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @fallback;
}
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
expires 365d;
try_files $uri $uri/ @fallback;
}
location / {
try_files /does_not_exists @fallback;
}
}
location @fallback {
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://127.0.0.1:8080 /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
access_log off;
}
return 301 https://$host:443$request_uri;
listen ip.ip.ip.ip:80;
}
server {
server_name site.su www.site.su;
ssl_certificate "/var/www/httpd-cert/www-root/narkolog24.crtca";
ssl_certificate_key "/var/www/httpd-cert/www-root/narkolog24.key";
ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
add_header Strict-Transport-Security "max-age=31536000;";
ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
charset off;
index index.php index.html;
disable_symlinks if_not_owner from=$root_path;
include /etc/nginx/vhosts-includes/*.conf;
include /etc/nginx/vhosts-resources/site.su/*.conf;
access_log /var/www/httpd-logs/site.su.access.log;
error_log /var/www/httpd-logs/site.su.error.log notice;
ssi on;
set $root_path /var/www/www-root/data/www/site.su;
root $root_path;
gzip on;
gzip_comp_level 5;
gzip_disable "msie6";
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;
http2_push_preload on;
location / {
if ($res_pushed = "false") {
add_header Set-Cookie "res_pushed=true; Max-Age=1200; Path=/"; # Если $res_pushed = false, создаём куку
add_header Link "</style.css>;rel=preload;as=style"; # и добавляем нужный заголовок
}
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @fallback;
}
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
expires 365d;
try_files $uri $uri/ @fallback;
}
location / {
try_files /does_not_exists @fallback;
}
}
location @fallback {
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://127.0.0.1:8080 /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
access_log off;
}
listen ip.ip.ip.ip:443 ssl;
}
Метод .getItem() позволяет только получить значение из базы (localStorage) по указанному ключу. Но ты сначала выдергиваешь только лишь для проверки на null, а в случае удачи, зачем-то повторно выдергиваешь, ни к чему не присваивая.