Файловый менеджер - Редактировать - /home/infrafs/www/wp-content/themes/trackstore/framework/eltd-framework.php
Назад
<?php require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.kses.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.layout1.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.layout2.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.layout3.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.layout.tax.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.optionsapi.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.framework.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.functions.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/lib/eltd.icons/eltd.icons.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/admin/options/eltd-options-setup.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/admin/meta-boxes/eltd-meta-boxes-setup.php"; require_once ELATED_FRAMEWORK_ROOT_DIR . "/modules/eltd-modules-loader.php"; if ( ! function_exists( 'trackstore_elated_admin_scripts_init' ) ) { /** * Function that registers all scripts that are necessary for our back-end */ function trackstore_elated_admin_scripts_init() { /** * @see TrackStoreElatedSkinAbstract::registerScripts - hooked with 10 * @see TrackStoreElatedSkinAbstract::registerStyles - hooked with 10 */ do_action( 'trackstore_elated_admin_scripts_init' ); } add_action( 'admin_init', 'trackstore_elated_admin_scripts_init' ); } if ( ! function_exists( 'trackstore_elated_enqueue_admin_styles' ) ) { /** * Function that enqueues styles for options page */ function trackstore_elated_enqueue_admin_styles() { wp_enqueue_style( 'wp-color-picker' ); /** * @see TrackStoreElatedSkinAbstract::enqueueStyles - hooked with 10 */ do_action( 'trackstore_elated_enqueue_admin_styles' ); } } if ( ! function_exists( 'trackstore_elated_enqueue_admin_scripts' ) ) { /** * Function that enqueues styles for options page */ function trackstore_elated_enqueue_admin_scripts() { wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_script( 'jquery-ui-datepicker' ); wp_enqueue_script( 'jquery-ui-accordion' ); wp_enqueue_script( 'common' ); wp_enqueue_script( 'wp-lists' ); wp_enqueue_script( 'postbox' ); wp_enqueue_media(); wp_enqueue_script( 'eltd-dependence', get_template_directory_uri() . '/framework/admin/assets/js/eltd-ui/eltd-dependence.js', array(), false, true ); wp_enqueue_script( 'eltd-twitter-connect', get_template_directory_uri() . '/framework/admin/assets/js/eltd-twitter-connect.js', array(), false, true ); /** * @see TrackStoreElatedSkinAbstract::enqueueScripts - hooked with 10 */ do_action( 'trackstore_elated_enqueue_admin_scripts' ); } } if ( ! function_exists( 'trackstore_elated_enqueue_meta_box_styles' ) ) { /** * Function that enqueues styles for meta boxes */ function trackstore_elated_enqueue_meta_box_styles() { wp_enqueue_style( 'wp-color-picker' ); /** * @see TrackStoreElatedSkinAbstract::enqueueStyles - hooked with 10 */ do_action( 'trackstore_elated_enqueue_meta_box_styles' ); } } if ( ! function_exists( 'trackstore_elated_enqueue_meta_box_scripts' ) ) { /** * Function that enqueues scripts for meta boxes */ function trackstore_elated_enqueue_meta_box_scripts() { wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_script( 'jquery-ui-datepicker' ); wp_enqueue_script( 'jquery-ui-accordion' ); wp_enqueue_script( 'jquery-ui-sortable' ); wp_enqueue_script( 'common' ); wp_enqueue_script( 'wp-lists' ); wp_enqueue_script( 'postbox' ); wp_enqueue_media(); wp_enqueue_script( 'eltd-dependence' ); /** * @see TrackStoreElatedSkinAbstract::enqueueScripts - hooked with 10 */ do_action( 'trackstore_elated_enqueue_meta_box_scripts' ); } } if ( ! function_exists( 'trackstore_elated_enqueue_nav_menu_script' ) ) { /** * Function that enqueues styles and scripts necessary for menu administration page. * It checks $hook variable * * @param $hook string current page hook to check */ function trackstore_elated_enqueue_nav_menu_script( $hook ) { if ( $hook == 'nav-menus.php' ) { wp_enqueue_script( 'eltd-nav-menu', get_template_directory_uri() . '/framework/admin/assets/js/eltd-nav-menu.js' ); wp_enqueue_style( 'eltd-nav-menu', get_template_directory_uri() . '/framework/admin/assets/css/eltd-nav-menu.css' ); } } add_action( 'admin_enqueue_scripts', 'trackstore_elated_enqueue_nav_menu_script' ); } if ( ! function_exists( 'trackstore_elated_enqueue_widgets_admin_script' ) ) { /** * Function that enqueues styles and scripts for admin widgets page. * * @param $hook string current page hook to check */ function trackstore_elated_enqueue_widgets_admin_script( $hook ) { if ( $hook == 'widgets.php' ) { wp_enqueue_script( 'eltd-dependence' ); wp_enqueue_script( 'eltd-widgets-dependence', get_template_directory_uri() . '/framework/admin/assets/js/eltd-ui/eltd-widget-dependence.js', array(), false, true ); } } add_action( 'admin_enqueue_scripts', 'trackstore_elated_enqueue_widgets_admin_script' ); } if ( ! function_exists( 'trackstore_elated_init_theme_options_array' ) ) { /** * Function that merges $trackstore_elated_options and default options array into one array. * * @see array_merge() */ function trackstore_elated_init_theme_options_array() { global $trackstore_elated_options, $trackstore_elated_Framework; $db_options = get_option( 'eltd_options_trackstore' ); //does eltd_options exists in db? if ( is_array( $db_options ) ) { //merge with default options $trackstore_elated_options = array_merge( $trackstore_elated_Framework->eltdOptions->options, get_option( 'eltd_options_trackstore' ) ); } else { //options don't exists in db, take default ones $trackstore_elated_options = $trackstore_elated_Framework->eltdOptions->options; } } add_action( 'trackstore_elated_after_options_map', 'trackstore_elated_init_theme_options_array', 0 ); } if ( ! function_exists( 'trackstore_elated_init_theme_options' ) ) { /** * Function that sets $trackstore_elated_options variable if it does'nt exists */ function trackstore_elated_init_theme_options() { global $trackstore_elated_options; global $trackstore_elated_Framework; if ( isset( $trackstore_elated_options['reset_to_defaults'] ) ) { if ( $trackstore_elated_options['reset_to_defaults'] == 'yes' ) { delete_option( "eltd_options_trackstore" ); } } if ( ! get_option( "eltd_options_trackstore" ) ) { add_option( "eltd_options_trackstore", $trackstore_elated_Framework->eltdOptions->options ); $trackstore_elated_options = $trackstore_elated_Framework->eltdOptions->options; } } } if ( ! function_exists( 'trackstore_elated_register_theme_settings' ) ) { /** * Function that registers setting that will be used to store theme options */ function trackstore_elated_register_theme_settings() { register_setting( 'trackstore_elated_theme_menu', 'eltd_options' ); } add_action( 'admin_init', 'trackstore_elated_register_theme_settings' ); } if ( ! function_exists( 'trackstore_elated_get_admin_tab' ) ) { /** * Helper function that returns current tab from url. * @return null */ function trackstore_elated_get_admin_tab() { return isset( $_GET['page'] ) ? trackstore_elated_strafter( $_GET['page'], 'tab' ) : null; } } if ( ! function_exists( 'trackstore_elated_strafter' ) ) { /** * Function that returns string that comes after found string * * @param $string string where to search * @param $substring string what to search for * * @return null|string string that comes after found string */ function trackstore_elated_strafter( $string, $substring ) { $pos = strpos( $string, $substring ); if ( $pos === false ) { return null; } return ( substr( $string, $pos + strlen( $substring ) ) ); } } if ( ! function_exists( 'trackstore_elated_save_options' ) ) { /** * Function that saves theme options to db. * It hooks to ajax wp_ajax_eltd_save_options action. */ function trackstore_elated_save_options() { global $trackstore_elated_options; if ( current_user_can( 'edit_theme_options' ) ) { $_REQUEST = stripslashes_deep( $_REQUEST ); unset( $_REQUEST['action'] ); check_ajax_referer( 'eltd_ajax_save_nonce', 'eltd_ajax_save_nonce' ); $trackstore_elated_options = array_merge( $trackstore_elated_options, $_REQUEST ); update_option( 'eltd_options_trackstore', $trackstore_elated_options ); do_action( 'trackstore_elated_after_theme_option_save' ); echo esc_html__( 'Saved', 'trackstore' ); die(); } } add_action( 'wp_ajax_trackstore_elated_save_options', 'trackstore_elated_save_options' ); } if ( ! function_exists( 'trackstore_elated_meta_box_add' ) ) { /** * Function that adds all defined meta boxes. * It loops through array of created meta boxes and adds them */ function trackstore_elated_meta_box_add() { global $trackstore_elated_Framework; foreach ( $trackstore_elated_Framework->eltdMetaBoxes->metaBoxes as $key => $box ) { $hidden = false; if ( ! empty( $box->hidden_property ) ) { foreach ( $box->hidden_values as $value ) { if ( trackstore_elated_option_get_value( $box->hidden_property ) == $value ) { $hidden = true; } } } if ( is_string( $box->scope ) ) { $box->scope = array( $box->scope ); } if ( is_array( $box->scope ) && count( $box->scope ) ) { foreach ( $box->scope as $screen ) { trackstore_elated_create_meta_box_handler( $box, $key, $screen ); if ( $hidden ) { add_filter( 'postbox_classes_' . $screen . '_eltd-meta-box-' . $key, 'trackstore_elated_meta_box_add_hidden_class' ); } } } } if ( trackstore_elated_is_wp_gutenberg_installed() || trackstore_elated_is_wp_gutenberg_installed() ) { trackstore_elated_enqueue_meta_box_styles(); trackstore_elated_enqueue_meta_box_scripts(); } else { add_action( 'admin_enqueue_scripts', 'trackstore_elated_enqueue_meta_box_styles' ); add_action( 'admin_enqueue_scripts', 'trackstore_elated_enqueue_meta_box_scripts' ); } } } if ( ! function_exists( 'trackstore_elated_meta_box_save' ) ) { /** * Function that saves meta box to postmeta table * * @param $post_id int id of post that meta box is being saved * @param $post WP_Post current post object */ function trackstore_elated_meta_box_save( $post_id, $post ) { global $trackstore_elated_Framework; $nonces_array = array(); $meta_boxes = trackstore_elated_framework()->eltdMetaBoxes->getMetaBoxesByScope( $post->post_type ); if ( is_array( $meta_boxes ) && count( $meta_boxes ) ) { foreach ( $meta_boxes as $meta_box ) { $nonces_array[] = 'trackstore_elated_meta_box_' . $meta_box->name . '_save'; } } if ( is_array( $nonces_array ) && count( $nonces_array ) ) { foreach ( $nonces_array as $nonce ) { if ( ! isset( $_POST[ $nonce ] ) || ! wp_verify_nonce( $_POST[ $nonce ], $nonce ) ) { return; } } } $postTypes = apply_filters( 'trackstore_elated_meta_box_post_types_save', array( 'post', 'page' ) ); if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } if ( ! isset( $_POST['_wpnonce'] ) ) { return; } if ( ! current_user_can( 'edit_post', $post_id ) ) { return; } if ( ! in_array( $post->post_type, $postTypes ) ) { return; } foreach ( $trackstore_elated_Framework->eltdMetaBoxes->options as $key => $box ) { if ( isset( $_POST[ $key ] ) && trim( $_POST[ $key ] !== '' ) ) { $value = $_POST[ $key ]; update_post_meta( $post_id, $key, $value ); } else { delete_post_meta( $post_id, $key ); } } $portfolios = false; if (isset($_POST['optionLabel'])) { foreach ($_POST['optionLabel'] as $key => $value) { $portfolios_val[$key] = array('optionLabel'=>$value,'optionValue'=>$_POST['optionValue'][$key],'optionUrl'=>$_POST['optionUrl'][$key],'optionlabelordernumber'=>$_POST['optionlabelordernumber'][$key]); $portfolios = true; } } if ( $portfolios ) { update_post_meta( $post_id, 'eltd_portfolios', $portfolios_val ); } else { delete_post_meta( $post_id, 'eltd_portfolios' ); } $portfolio_images = false; if (isset($_POST['portfolioimg'])) { foreach ($_POST['portfolioimg'] as $key => $value) { $portfolio_images_val[$key] = array('portfolioimg'=>$_POST['portfolioimg'][$key],'portfoliotitle'=>$_POST['portfoliotitle'][$key],'portfolioimgordernumber'=>$_POST['portfolioimgordernumber'][$key], 'portfoliovideotype'=>$_POST['portfoliovideotype'][$key], 'portfoliovideoid'=>$_POST['portfoliovideoid'][$key], 'portfoliovideoimage'=>$_POST['portfoliovideoimage'][$key], 'portfoliovideowebm'=>$_POST['portfoliovideowebm'][$key], 'portfoliovideomp4'=>$_POST['portfoliovideomp4'][$key], 'portfoliovideoogv'=>$_POST['portfoliovideoogv'][$key], 'portfolioimgtype'=>$_POST['portfolioimgtype'][$key] ); $portfolio_images = true; } } if ( $portfolio_images ) { update_post_meta( $post_id, 'eltd_portfolio_images', $portfolio_images_val ); } else { delete_post_meta( $post_id, 'eltd_portfolio_images' ); } } add_action( 'save_post', 'trackstore_elated_meta_box_save', 1, 2 ); } if ( ! function_exists( 'trackstore_elated_render_meta_box' ) ) { /** * Function that renders meta box * * @param $post WP_Post post object * @param $metabox array array of current meta box parameters */ function trackstore_elated_render_meta_box( $post, $metabox ) { ?> <div class="eltd-meta-box eltd-page"> <div class="eltd-meta-box-holder"> <?php $metabox['args']['box']->render(); ?> <?php wp_nonce_field( 'trackstore_elated_meta_box_' . $metabox['args']['box']->name . '_save', 'trackstore_elated_meta_box_' . $metabox['args']['box']->name . '_save' ); ?> </div> </div> <?php } } if ( ! function_exists( 'trackstore_elated_meta_box_add_hidden_class' ) ) { /** * Function that adds class that will initially hide meta box * * @param array $classes array of classes * * @return array modified array of classes */ function trackstore_elated_meta_box_add_hidden_class( $classes = array() ) { if ( ! in_array( 'eltd-meta-box-hidden', $classes ) ) { $classes[] = 'eltd-meta-box-hidden'; } return $classes; } } if ( ! function_exists( 'trackstore_elated_remove_default_custom_fields' ) ) { /** * Function that removes default WordPress custom fields interface */ function trackstore_elated_remove_default_custom_fields() { foreach ( array( 'normal', 'advanced', 'side' ) as $context ) { foreach ( apply_filters( 'trackstore_elated_meta_box_post_types_remove', array( 'post', 'page' ) ) as $postType ) { remove_meta_box( 'postcustom', $postType, $context ); } } } add_action( 'do_meta_boxes', 'trackstore_elated_remove_default_custom_fields' ); } if ( ! function_exists( 'trackstore_elated_generate_icon_pack_options' ) ) { /** * Generates options HTML for each icon in given icon pack * Hooked to wp_ajax_update_admin_nav_icon_options action */ function trackstore_elated_generate_icon_pack_options() { global $trackstore_elated_IconCollections; $html = ''; $icon_pack = isset( $_POST['icon_pack'] ) ? $_POST['icon_pack'] : ''; $collections_object = $trackstore_elated_IconCollections->getIconCollection( $icon_pack ); if ( $collections_object ) { $icons = $collections_object->getIconsArray(); if ( is_array( $icons ) && count( $icons ) ) { foreach ( $icons as $key => $icon ) { $html .= '<option value="' . esc_attr( $key ) . '">' . esc_html( $key ) . '</option>'; } } } echo wp_kses( $html, array( 'option' => array( 'value' => true ) ) ); } add_action( 'wp_ajax_update_admin_nav_icon_options', 'trackstore_elated_generate_icon_pack_options' ); } if ( ! function_exists( 'trackstore_elated_save_dismisable_notice' ) ) { /** * Updates user meta with dismisable notice. Hooks to admin_init action * in order to check this on every page request in admin */ function trackstore_elated_save_dismisable_notice() { if ( is_admin() && ! empty( $_GET['eltd_dismis_notice'] ) ) { $notice_id = sanitize_key( $_GET['eltd_dismis_notice'] ); $current_user_id = get_current_user_id(); update_user_meta( $current_user_id, 'dismis_' . $notice_id, 1 ); } } add_action( 'admin_init', 'trackstore_elated_save_dismisable_notice' ); } if ( ! function_exists( 'trackstore_elated_ajax_status' ) ) { /** * Function that return status from ajax functions */ function trackstore_elated_ajax_status( $status, $message, $data = null ) { $response = array( 'status' => $status, 'message' => $message, 'data' => $data ); $output = json_encode( $response ); exit( $output ); } } if ( ! function_exists( 'trackstore_elated_hook_twitter_request_ajax' ) ) { /** * Wrapper function for obtaining twitter request token. * Hooks to wp_ajax_eltd_twitter_obtain_request_token ajax action * * @see ElatedTwitterApi::obtainRequestToken() */ function trackstore_elated_hook_twitter_request_ajax() { ElatedfTwitterApi::getInstance()->obtainRequestToken(); } add_action( 'wp_ajax_eltd_twitter_obtain_request_token', 'trackstore_elated_hook_twitter_request_ajax' ); } if ( ! function_exists( 'trackstore_elated_comment' ) ) { /** * Function which modify default wordpress comments * * @return comments html */ function trackstore_elated_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; global $post; $is_pingback_comment = $comment->comment_type == 'pingback'; $is_author_comment = $post->post_author == $comment->user_id; $comment_class = 'eltd-comment clearfix'; if ( $is_author_comment ) { $comment_class .= ' eltd-post-author-comment'; } if ( $is_pingback_comment ) { $comment_class .= ' eltd-pingback-comment'; } ?> <li> <div class="<?php echo esc_attr( $comment_class ); ?>"> <?php if ( ! $is_pingback_comment ) { ?> <div class="eltd-comment-image"> <?php echo trackstore_elated_kses_img( get_avatar( $comment, 'thumbnail' ) ); ?> </div> <?php } ?> <div class="eltd-comment-text"> <div class="eltd-comment-info"> <h4 class="eltd-comment-name vcard"> <?php if ( $is_pingback_comment ) { esc_html_e( 'Pingback:', 'trackstore' ); } ?> <?php echo wp_kses_post( get_comment_author_link() ); ?> </h4> </div> <div class="eltd-comment-date"><?php comment_time( get_option( 'date_format' ) ); ?></div> <?php if ( ! $is_pingback_comment ) { ?> <div class="eltd-text-holder" id="comment-<?php echo comment_ID(); ?>"> <?php comment_text(); ?> </div> <?php } ?> <?php comment_reply_link( array_merge( $args, array( 'reply_text' => esc_html__( 'reply', 'trackstore' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); edit_comment_link( esc_html__( 'edit', 'trackstore' ) ); ?> </div> </div> <?php //li tag will be closed by WordPress after looping through child elements ?> <?php } } /* Taxonomy custom fields functions - START */ if ( ! function_exists( 'trackstore_elated_init_custom_taxonomy_fields' ) ) { function trackstore_elated_init_custom_taxonomy_fields() { do_action( 'trackstore_elated_custom_taxonomy_fields' ); } add_action( 'after_setup_theme', 'trackstore_elated_init_custom_taxonomy_fields' ); } if ( ! function_exists( 'trackstore_elated_taxonomy_fields_add' ) ) { function trackstore_elated_taxonomy_fields_add() { global $trackstore_elated_Framework; foreach ( $trackstore_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { add_action( $fields->scope . '_add_form_fields', 'trackstore_elated_taxonomy_fields_display_add', 10, 2 ); } } add_action( 'after_setup_theme', 'trackstore_elated_taxonomy_fields_add', 11 ); } if ( ! function_exists( 'trackstore_elated_taxonomy_fields_edit' ) ) { function trackstore_elated_taxonomy_fields_edit() { global $trackstore_elated_Framework; foreach ( $trackstore_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { add_action( $fields->scope . '_edit_form_fields', 'trackstore_elated_taxonomy_fields_display_edit', 10, 2 ); } } add_action( 'after_setup_theme', 'trackstore_elated_taxonomy_fields_edit', 11 ); } if ( ! function_exists( 'trackstore_elated_taxonomy_fields_display_add' ) ) { function trackstore_elated_taxonomy_fields_display_add( $taxonomy ) { global $trackstore_elated_Framework; foreach ( $trackstore_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { if ( $taxonomy == $fields->scope ) { $fields->render(); } } } } if ( ! function_exists( 'trackstore_elated_taxonomy_fields_display_edit' ) ) { function trackstore_elated_taxonomy_fields_display_edit( $term, $taxonomy ) { global $trackstore_elated_Framework; foreach ( $trackstore_elated_Framework->eltdTaxonomyOptions->taxonomyOptions as $key => $fields ) { if ( $taxonomy == $fields->scope ) { $fields->render(); } } } } if ( ! function_exists( 'trackstore_elated_save_taxonomy_custom_fields' ) ) { function trackstore_elated_save_taxonomy_custom_fields( $term_id ) { $fields = apply_filters( 'trackstore_elated_taxonomy_fields', array() ); foreach ( $fields as $value ) { if ( isset( $_POST[ $value ] ) && '' !== $_POST[ $value ] ) { add_term_meta( $term_id, $value, $_POST[ $value ] ); } } } add_action( 'created_term', 'trackstore_elated_save_taxonomy_custom_fields', 10, 2 ); } if ( ! function_exists( 'trackstore_elated_update_taxonomy_custom_fields' ) ) { function trackstore_elated_update_taxonomy_custom_fields( $term_id ) { $fields = apply_filters( 'trackstore_elated_taxonomy_fields', array() ); foreach ( $fields as $value ) { if ( isset( $_POST[ $value ] ) && '' !== $_POST[ $value ] ) { update_term_meta( $term_id, $value, $_POST[ $value ] ); } else { update_term_meta( $term_id, $value, '' ); } } } add_action( 'edited_term', 'trackstore_elated_update_taxonomy_custom_fields', 10, 2 ); } if ( ! function_exists( 'trackstore_elated_tax_add_script' ) ) { function trackstore_elated_tax_add_script() { wp_enqueue_media(); wp_enqueue_script( 'eltd-tax-js', ELATED_FRAMEWORK_ROOT . '/admin/assets/js/eltd-tax-custom-fields.js' ); } add_action( 'admin_enqueue_scripts', 'trackstore_elated_tax_add_script' ); } /** Taxonomy Delete Image **/ if ( ! function_exists( 'trackstore_elated_tax_del_image' ) ) { function trackstore_elated_tax_del_image() { /** If we don't have a term_id, bail out **/ if ( ! isset( $_GET['term_id'] ) ) { esc_html_e( 'Not Set or Empty', 'trackstore' ); exit; } $field_name = $_GET['field_name']; $term_id = $_GET['term_id']; $imageID = get_term_meta( $term_id, $field_name, true ); // Get our attachment ID if ( is_numeric( $imageID ) ) { // Verify that the attachment ID is indeed a number wp_delete_attachment( $imageID ); // Delete our image delete_term_meta( $term_id, $field_name );// Delete our image meta exit; } esc_html_e( 'Contact Administrator', 'trackstore' ); // If we've reached this point, something went wrong - enable debugging exit; } add_action( 'wp_ajax_trackstore_elated_tax_del_image', 'trackstore_elated_tax_del_image' ); } /* Taxonomy custom fields functions - END */ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка