Но!! Как ты собрался перезаливать? Если просто по ФТП с заменой имен файлов- ничего не выйдет. Если вручную в каждом посте, тогда получиться.
<?php
/*
Template Name: Luxury
*/
?>
<?php village_get_header(); ?>
<main id="Luxury" class="content-area content-area--page">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) :
comments_template();
endif;
?>
<?php endwhile; // end of the loop. ?>
</main><!-- #primary -->
<?php village_get_footer(); ?>
<?php
/**
* Village functions and definitions
*/
// !!!!!!!
// IMPORTANT: Do not remove this line or change its position!
// !!!!!!!
$template_directory = get_template_directory();
require_once( $template_directory . '/inc/includes.php' );
/**
* Wordpress Requirement:
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! isset( $content_width ) ) {
$content_width = 1380; /* pixels */
}
/**
*
*
* That's it!
*
* Keeping functions.php clean
*
* You can find full list of include tree in /inc/includes.php
*
*
*
*/
/* Отключение сжатия*/
add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );