Files
dostavka_vodi/wp-content/themes/water-delivery/functions.php
2026-07-05 16:17:44 +03:00

422 lines
15 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Water Delivery functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Water Delivery
*/
if ( ! function_exists( 'water_delivery_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function water_delivery_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Water Delivery, use a find and replace
* to change 'water-delivery' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'water-delivery', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary', 'water-delivery' ),
) );
// Enable support for custom logo.
add_theme_support( 'custom-logo' , array(
'height' =>45,
'width' =>45,
'flex-height' =>true,
'flex-width' =>true,
));
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'water_delivery_custom_background_args', array(
'default-color' => 'fff',
'default-image' => '',
) ) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, icons, and column width.
*/
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
add_editor_style( array( '/assets/css/editor-style' . $min . '.css', water_delivery_fonts_url() ) );
// Gutenberg support
add_theme_support( 'editor-color-palette', array(
array(
'name' => esc_html__( 'Tan', 'water-delivery' ),
'slug' => 'tan',
'color' => '#E6DBAD',
),
array(
'name' => esc_html__( 'Yellow', 'water-delivery' ),
'slug' => 'yellow',
'color' => '#FDE64B',
),
array(
'name' => esc_html__( 'Orange', 'water-delivery' ),
'slug' => 'orange',
'color' => '#ED7014',
),
array(
'name' => esc_html__( 'Red', 'water-delivery' ),
'slug' => 'red',
'color' => '#D0312D',
),
array(
'name' => esc_html__( 'Pink', 'water-delivery' ),
'slug' => 'pink',
'color' => '#b565a7',
),
array(
'name' => esc_html__( 'Purple', 'water-delivery' ),
'slug' => 'purple',
'color' => '#A32CC4',
),
array(
'name' => esc_html__( 'Blue', 'water-delivery' ),
'slug' => 'blue',
'color' => '#3A43BA',
),
array(
'name' => esc_html__( 'Green', 'water-delivery' ),
'slug' => 'green',
'color' => '#3BB143',
),
array(
'name' => esc_html__( 'Brown', 'water-delivery' ),
'slug' => 'brown',
'color' => '#231709',
),
array(
'name' => esc_html__( 'Grey', 'water-delivery' ),
'slug' => 'grey',
'color' => '#6C626D',
),
array(
'name' => esc_html__( 'Black', 'water-delivery' ),
'slug' => 'black',
'color' => '#000000',
),
));
add_theme_support( 'align-wide' );
add_theme_support( 'editor-font-sizes', array(
array(
'name' => esc_html__( 'small', 'water-delivery' ),
'shortName' => esc_html__( 'S', 'water-delivery' ),
'size' => 12,
'slug' => 'small'
),
array(
'name' => esc_html__( 'regular', 'water-delivery' ),
'shortName' => esc_html__( 'M', 'water-delivery' ),
'size' => 16,
'slug' => 'regular'
),
array(
'name' => esc_html__( 'larger', 'water-delivery' ),
'shortName' => esc_html__( 'L', 'water-delivery' ),
'size' => 36,
'slug' => 'larger'
),
array(
'name' => esc_html__( 'huge', 'water-delivery' ),
'shortName' => esc_html__( 'XL', 'water-delivery' ),
'size' => 48,
'slug' => 'huge'
)
));
add_theme_support('editor-styles');
add_theme_support( 'wp-block-styles' );
}
endif;
add_action( 'after_setup_theme', 'water_delivery_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function water_delivery_content_width() {
$GLOBALS['content_width'] = apply_filters( 'water_delivery_content_width', 640 );
}
add_action( 'after_setup_theme', 'water_delivery_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function water_delivery_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'water-delivery' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'water-delivery' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'water-delivery' ), 1 ),
'id' => 'footer-1',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'water-delivery' ), 2 ),
'id' => 'footer-2',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'water-delivery' ), 3 ),
'id' => 'footer-3',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
register_sidebar( array(
'name' => sprintf( esc_html__( 'Footer %d', 'water-delivery' ), 4 ),
'id' => 'footer-4',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'water_delivery_widgets_init' );
/**
* Register custom fonts.
*/
function water_delivery_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
/* translators: If there are characters in your language that are not supported by Lora, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Lora: on or off', 'water-delivery' ) ) {
$fonts[] = 'Lora:400,600,700';
}
if ( 'off' !== _x( 'on', 'Space Grotesk: on or off', 'water-delivery' ) ) {
$fonts[] = 'Space Grotesk:300,400,500,600,700';
}
if ( $fonts ) {
$fonts_url = add_query_arg( array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
), 'https://fonts.googleapis.com/css' );
}
return esc_url_raw( $fonts_url );
}
/**
* Enqueue scripts and styles.
*/
function water_delivery_scripts() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$fonts_url = water_delivery_fonts_url();
$primary_color = water_delivery_get_option( 'primary_color' );
if ( ! empty( $fonts_url ) ) {
wp_enqueue_style( 'water-delivery-google-fonts', $fonts_url, array(), null );
}
wp_enqueue_style( 'fontawesome-all', get_template_directory_uri() . '/assets/css/all' . $min . '.css', '', '4.7.0' );
wp_enqueue_style( 'slick-theme-css', get_template_directory_uri() .'/assets/css/slick-theme' . $min . '.css', '', 'v2.2.0');
wp_enqueue_style( 'slick-css', get_template_directory_uri() .'/assets/css/slick' . $min . '.css', '', 'v1.8.0');
wp_enqueue_style( 'water-delivery-blocks', get_template_directory_uri() . '/assets/css/blocks' . $min . '.css' );
wp_enqueue_style( 'water-delivery-style', get_stylesheet_uri() );
wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/js/slick' . $min . '.js', array('jquery'), '2017417', true );
wp_enqueue_script( 'jquery-match-height', get_template_directory_uri() . '/assets/js/jquery.matchHeight' . $min . '.js', array('jquery'), '2017417', true );
wp_enqueue_script( 'water-delivery-navigation', get_template_directory_uri() . '/assets/js/navigation' . $min . '.js', array(), '20151215', true );
wp_enqueue_script( 'water-delivery-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . $min . '.js', array(), '20151215', true );
wp_enqueue_script( 'water-delivery-custom-js', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array('jquery'), '20151215', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'water_delivery_scripts' );
/**
* Enqueue editor styles for Gutenberg
*
* @since Water Delivery 1.0.0
*/
function water_delivery_block_editor_styles() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
// Block styles.
wp_enqueue_style( 'water-delivery-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks' . $min . '.css' ) );
// Add custom fonts.
wp_enqueue_style( 'water-delivery-fonts', water_delivery_fonts_url(), array(), null );
}
add_action( 'enqueue_block_editor_assets', 'water_delivery_block_editor_styles' );
function water_delivery_category_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
}
return $title;
}
add_filter( 'get_the_archive_title', 'water_delivery_category_title' );
/**
* Load init.
*/
require_once get_template_directory() . '/inc/init.php';
/**
* Display the privacy policy page without requiring a database page.
*/
function water_delivery_privacy_policy_template() {
if ( is_admin() || empty( $_SERVER['REQUEST_URI'] ) ) {
return;
}
$request_path = trim( wp_parse_url( wp_unslash( $_SERVER['REQUEST_URI'] ), PHP_URL_PATH ), '/' );
if ( 'privacy-policy' === $request_path ) {
status_header( 200 );
include get_template_directory() . '/privacy-policy.php';
exit;
}
}
add_action( 'template_redirect', 'water_delivery_privacy_policy_template', 0 );
/**
* Cookie notice and personal data consent controls.
*/
function water_delivery_privacy_footer_assets() {
$privacy_url = esc_url( home_url( '/privacy-policy/' ) );
?>
<div class="cookie-consent-banner" data-cookie-consent-banner hidden>
<p>
<?php esc_html_e( 'Мы используем файлы cookie для улучшения работы сайта. Продолжая использовать сайт, Вы соглашаетесь с нашей', 'water-delivery' ); ?>
<a href="<?php echo $privacy_url; ?>"><?php esc_html_e( 'Политикой конфиденциальности', 'water-delivery' ); ?></a>.
</p>
<button type="button" class="cookie-consent-accept" data-cookie-consent-accept><?php esc_html_e( 'Принять', 'water-delivery' ); ?></button>
</div>
<script>
(function () {
var consentKey = 'water_delivery_cookie_consent';
var banner = document.querySelector('[data-cookie-consent-banner]');
var acceptButton = document.querySelector('[data-cookie-consent-accept]');
var privacyUrl = <?php echo wp_json_encode( $privacy_url ); ?>;
var consentHtml = 'Согласен(на) на обработку персональных данных и принимаю <a href="' + privacyUrl + '">Политику конфиденциальности</a>';
if (banner && localStorage.getItem(consentKey) !== 'accepted') {
banner.hidden = false;
}
if (acceptButton) {
acceptButton.addEventListener('click', function () {
localStorage.setItem(consentKey, 'accepted');
if (banner) {
banner.hidden = true;
}
});
}
document.querySelectorAll('form').forEach(function (form, index) {
var ignored = form.matches('.search-form, .woocommerce-cart-form, form[role="search"]');
var hasPersonalFields = form.querySelector('input[type="email"], input[type="tel"], input[name*="phone"], input[name*="email"], textarea, .wpforms-submit, .wpcf7-submit');
if (ignored || !hasPersonalFields || form.querySelector('.personal-data-consent')) {
return;
}
var field = document.createElement('label');
field.className = 'personal-data-consent';
field.innerHTML = '<input type="checkbox" name="personal_data_consent_' + index + '" required> <span>' + consentHtml + '</span>';
var submit = form.querySelector('button[type="submit"], input[type="submit"], .wpforms-submit, .wpcf7-submit');
if (submit && submit.parentNode) {
submit.parentNode.insertBefore(field, submit);
} else {
form.appendChild(field);
}
});
})();
</script>
<?php
}
add_action( 'wp_footer', 'water_delivery_privacy_footer_assets', 20 );
function water_delivery_comment_privacy_consent_field( $fields ) {
$fields['privacy_consent'] = '<p class="comment-form-privacy-consent"><label><input type="checkbox" name="privacy_consent" required> ' . sprintf( wp_kses( __( 'Согласен(на) на обработку персональных данных и принимаю <a href="%s">Политику конфиденциальности</a>', 'water-delivery' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( home_url( '/privacy-policy/' ) ) ) . '</label></p>';
return $fields;
}
add_filter( 'comment_form_default_fields', 'water_delivery_comment_privacy_consent_field' );
function water_delivery_comment_privacy_consent_validate( $commentdata ) {
if ( empty( $_POST['privacy_consent'] ) ) {
wp_die( esc_html__( 'Необходимо согласиться на обработку персональных данных.', 'water-delivery' ) );
}
return $commentdata;
}
add_filter( 'preprocess_comment', 'water_delivery_comment_privacy_consent_validate' );