Файловый менеджер - Редактировать - /home/iss2024/ras-store.com/wp-content/themes/estore/inc/functions.php
Ðазад
<?php /** * eStore functionality * * @package ThemeGrill * @subpackage estore * @since eStore 1.2.5 */ /** * Header search form */ function estore_header_search_box() { $search_form = get_theme_mod( 'estore_header_search_option', 'wp_search' ); ?> <div class="search-wrapper search-user-block"> <div class="search-icon"> <i class="fa fa-search"> </i> </div> <div class="header-search-box"> <?php // if WC is activated and WC Search is selected in customizer if ( function_exists( 'get_product_search_form' ) && $search_form === 'wc_search' ) : get_product_search_form(); else : get_search_form(); endif; ?> </div> </div> <?php } /** * estore_product_searchform * Overrides default WC search form * * @since 1.2.5 */ function estore_product_searchform( $form ) { if ( ! class_exists( 'DOMDocument' ) || ! class_exists( 'DOMXPath' ) ) { return $form; } libxml_use_internal_errors( true ); $dom = new DOMDocument(); $dom->loadHTML( $form ); $xpath = new DOMXPath( $dom ); $button = $xpath->query( "//button[@type='submit']" )->item( 0 ); $button->nodeValue = ''; $icon = $dom->createElement( 'i' ); $icon->setAttribute( 'class', 'fa fa-search' ); $button->appendChild( $icon ); $button->setAttribute( 'class', 'searchsubmit' ); $query = "//form[contains(concat(' ', normalize-space(@class), ' '), ' woocommerce-product-search ')]"; $form = $xpath->query( $query )->item( 0 ); $form->setAttribute( 'class', 'estore-wc-product-search' ); $content = ''; $body = $dom->getElementsByTagName( 'body' )->item( 0 ); foreach ( $body->childNodes as $node ) { $content .= $dom->saveHTML( $node ); } $form = $content; return $form; } add_filter( 'get_product_search_form', 'estore_product_searchform', 10, 1 ); /* * Related posts. */ if ( ! function_exists( 'estore_related_posts_function' ) ) { function estore_related_posts_function() { wp_reset_postdata(); global $post; // Define shared post arguments $args = array( 'no_found_rows' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, 'ignore_sticky_posts' => 1, 'orderby' => 'rand', 'post__not_in' => array( $post->ID ), 'posts_per_page' => 3, ); // Related by categories. if ( get_theme_mod( 'estore_related_posts', 'categories' ) == 'categories' ) { $cats = wp_get_post_categories( $post->ID, array( 'fields' => 'ids' ) ); $args['category__in'] = $cats; } // Related by tags. if ( get_theme_mod( 'estore_related_posts', 'categories' ) == 'tags' ) { $tags = wp_get_post_tags( $post->ID, array( 'fields' => 'ids' ) ); $args['tag__in'] = $tags; if ( ! $tags ) { $break = true; } } $query = ! isset( $break ) ? new WP_Query( $args ) : new WP_Query(); return $query; } } if ( ! function_exists( 'estore_pingback_header' ) ) : /** * Add a pingback url auto-discovery header for single posts, pages, or attachments. */ function estore_pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">', esc_url( get_bloginfo( 'pingback_url' ) ) ); } } endif; add_action( 'wp_head', 'estore_pingback_header' ); /** * Update image attributes for retina logo. * */ if ( ! function_exists( 'estore_change_logo_attr' ) ) : function estore_change_logo_attr( $attr, $attachment, $size ) { $custom_logo = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), 'full' ); if ( ! empty( $custom_logo ) ) { $custom_logo = $custom_logo[0]; } if ( isset( $attr['class'] ) && 'custom-logo' === $attr['class'] ) { if ( 1 == get_theme_mod( 'estore_different_retina_logo', 0 ) ) { $retina_logo = get_theme_mod( 'estore_retina_logo_upload', '' ); if ( $retina_logo ) { $attr['srcset'] = $custom_logo . ' 1x,' . $retina_logo . ' 2x'; } } } return $attr; } endif; add_filter( 'wp_get_attachment_image_attributes', 'estore_change_logo_attr', 10, 3 ); /** * Compare user's current version of plugin. */ if ( ! function_exists( 'estore_plugin_version_compare' ) ) { function estore_plugin_version_compare( $plugin_slug, $version_to_compare ) { if ( ! function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $installed_plugins = get_plugins(); // Plugin not installed. if ( ! isset( $installed_plugins[ $plugin_slug ] ) ) { return false; } $tdi_user_version = $installed_plugins[ $plugin_slug ]['Version']; return version_compare( $tdi_user_version, $version_to_compare, '<' ); } }
| ver. 1.1 | |
.
| PHP 8.4.21 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.01 |
proxy
|
phpinfo
|
ÐаÑтройка