This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//если шаблон 5 или 2 | |
[[*template:is=5:or:if=[[*template]]:is=2:then=` | |
//подключаем чанк с тайтлом | |
[[$seo.title.dis]] | |
//или шаблон 34 или 36 | |
:else= | |
[[*template:is=34:or:if=[[*template]]:is=36:then=` | |
//подключаем чанк seo.title.stroy | |
[[$seo.title.stroy]] | |
:else= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Function for post duplication. Dups appear as drafts. User is redirected to the edit screen | |
*/ | |
function rd_duplicate_post_as_draft(){ | |
global $wpdb; | |
if (! ( isset( $_GET['post']) || isset( $_POST['post']) || ( isset($_REQUEST['action']) && 'rd_duplicate_post_as_draft' == $_REQUEST['action'] ) ) ) { | |
wp_die('No post to duplicate has been supplied!'); | |
} | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style id="divi-hack"> | |
/** @import Custom Fonts - Keep at top of this style **/ | |
@import url('https://fonts.googleapis.com/css?family=Indie+Flower'); | |
/** Body Overall Font Weight **/ | |
body { | |
font-weight: 800} | |
/** Menu Animation Accent Color **/ | |
.divi-hacks-animenu-1 #top-menu > li:before, | |
.divi-hacks-animenu-2 #top-menu li.current_page_item > a, | |
.divi-hacks-animenu-2 .et-fixed-header #top-menu li.current_page_item > a, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
jQuery(document).ready(function($) { | |
$('div:not(.et_mobile_menu) .lightbox-content, div:not(.et_mobile_menu) [class*="lightbox-content-"]').addClass('mfp-hide'); | |
$('div:not(.et_mobile_menu) .lightbox-trigger').magnificPopup({ items: { src: 'div:not(.et_mobile_menu) .lightbox-content', type: 'inline' } }); | |
$('div:not(.et_mobile_menu) [class*="lightbox-trigger-"]').each(function(){ | |
var triggerClass = Array.prototype.find.call(this.classList, function(clazz){ | |
return clazz.indexOf('lightbox-trigger-') > -1; | |
}); | |
var suffix = triggerClass.split('lightbox-trigger-')[1]; | |
var content = '.lightbox-content-'+ suffix; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('wp_default_scripts', function ($scripts) { | |
if (!empty($scripts->registered['jquery'])) { | |
$scripts->registered['jquery']->deps = array_diff($scripts->registered['jquery']->deps, ['jquery-migrate']); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****1.-----Защита от XSS-инъекций. Доб код в htaccess----------------------****/ | |
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] | |
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) | |
RewriteRule ^(.*)$ index.php [F,L] | |
/****1.-----END of 1.----------------------****/ | |