add files

This commit is contained in:
Andrey Kuvshinov
2025-07-09 21:21:17 +03:00
commit 8fc8cbae32
596 changed files with 207566 additions and 0 deletions

18
embed-content.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
/**
* Contains the post embed content template part
*
* When a post is embedded in an iframe, this file is used to create the content template part
* output if the active theme does not include an embed-content.php template.
*
* @package WordPress
* @subpackage Theme_Compat
* @since 4.5.0
*/
if( $_SERVER['HTTP_REFERER'] === "https://zn.profile.ru/") {
get_template_part("embed-content-zn");
}else{
get_template_part("embed-content-orig");
}