Server IP : 14.241.111.210 / Your IP : 18.188.96.25 Web Server : Apache System : Linux localhost.localdomain 3.10.0-1160.66.1.el7.x86_64 #1 SMP Wed May 18 16:02:34 UTC 2022 x86_64 User : www ( 1001) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/webthanhha.com/wp-content/themes/webthanhha/ |
Upload File : |
<?php function theme_settup(){ register_nav_menu('topmenu',__( 'Menu chính' )); register_nav_menu('tourmenu',__( 'Danh mục tour' )); add_theme_support( 'post-thumbnails' ); function setpostview($postID){ $count_key ='views'; $count = get_post_meta($postID, $count_key, true); if($count == ''){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); } else { $count++; update_post_meta($postID, $count_key, $count); } } function getpostviews($postID){ $count_key ='views'; $count = get_post_meta($postID, $count_key, true); if($count == ''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return "0"; } return $count; } } add_action( 'init', 'theme_settup'); add_filter('use_block_editor_for_post', '__return_false'); //Thêm Widget vào Website /*add_action( widgets_init, 'nbt_theme_widgets_init'); function nbt_theme_widgets_init(){ register_sidebar( array( 'name' => __( 'Right Sidebar', 'dulichnb' ), 'id' => 'right-sidebar', 'description' => __( 'Thêm Widget vào bên phải Website', 'dulichnb' ), 'class' => '', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>' ) ); }*/ add_action('restrict_manage_posts', 'restrict_books_by_genre'); //Lọc bài viết theo danh mục post function convert_id_to_term_in_query($query) { global $pagenow; //$post_type = 'kho-giao-dien'; // thay đổi //$taxonomy = 'nganh-nghe'; // thay đổi $q_vars = &$query->query_vars; if ($pagenow=='edit.php'&&isset($q_vars['post_type'])&&$q_vars['post_type']==$post_type&&isset($q_vars[$taxonomy])&&is_numeric($q_vars[$taxonomy])&&$q_vars[$taxonomy]!=0){ $term = get_term_by('id', $q_vars[$taxonomy], $taxonomy); $q_vars[$taxonomy] = $term->slug; } } add_filter('parse_query', 'convert_id_to_term_in_query'); //Lọc bài viết theo danh mục post_type function restrict_books_by_genre() { global $typenow; $post_type = 'kho-giao-dien'; // thay đổi $taxonomy = 'nganh-nghe'; // thay đổi if ($typenow == $post_type) { $selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ''; $info_taxonomy = get_taxonomy($taxonomy); wp_dropdown_categories(array( 'show_option_all' => __("Show All {$info_taxonomy->label}"), 'taxonomy' => $taxonomy, 'name' => $taxonomy, 'orderby' => 'name', 'selected' => $selected, 'show_count' => true, 'hide_empty' => false, )); }; } add_action('restrict_manage_posts', 'restrict_books_by_genre'); //-------------------------------------------- function restrict_books_by_color() { global $typenow; $post_type = 'kho-giao-dien'; // thay đổi $taxonomy = 'mau-sac'; // thay đổi if ($typenow == $post_type) { $selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ''; $info_taxonomy = get_taxonomy($taxonomy); wp_dropdown_categories(array( 'show_option_all' => __("Show All {$info_taxonomy->label}"), 'taxonomy' => $taxonomy, 'name' => $taxonomy, 'orderby' => 'name', 'selected' => $selected, 'show_count' => true, 'hide_empty' => false, )); }; } add_action('restrict_manage_posts', 'restrict_books_by_color'); //===================================================== add_custom_background(); //----------------------------------------------- function vnta_theme_phpmailer_init_action($phpmailer ) { if (! ($phpmailer instanceof PHPMailer)){ return; } $phpmailer->SMTPOptions = array( 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true ) ); } add_action( 'phpmailer_init', 'vnta_theme_phpmailer_init_action' ); //Loại bỏ thẻ p trống trong bài viết add_filter('the_content', 'remove_empty_p', 20, 1); function remove_empty_p( $content ) { $content = force_balance_tags( $content ); $content = preg_replace( '#<p>\s*+(<br\s*/*>)?\s*</p>#i', '', $content ); $content = preg_replace( '~\s?<p>(\s| )+</p>\s?~', '', $content ); return $content; } // Chống Spam bằng định dạng số điện thoại add_filter('wpcf7_validate_tel', 'devvn_custom_validate_sdt', 10, 2); add_filter('wpcf7_validate_tel*', 'devvn_custom_validate_sdt', 10, 2); function devvn_custom_validate_sdt($result, $tag){ $name = $tag->name; if($name === 'your-phone'){ $sdt = isset($_POST[$name]) ? wp_unslash($_POST[$name]):''; if(!preg_match('/^0([0-9]{9})+$/D', $sdt)){ $result->invalidate($tag, 'Số điện thoại không hợp lệ.'); } } return $result; } /* function restrict_books_by_genre() { global $typenow; $post_type = 'tour-du-lich'; // thay đổi $taxonomy = 'danh-muc-tour'; // thay đổi if ($typenow == $post_type) { $selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ''; $info_taxonomy = get_taxonomy($taxonomy); wp_dropdown_categories(array( 'show_option_all' => __("Show All {$info_taxonomy->label}"), 'taxonomy' => $taxonomy, 'name' => $taxonomy, 'orderby' => 'name', 'selected' => $selected, 'show_count' => true, 'hide_empty' => true, )); }; }*/ /*add_action( 'init', 'polygon_excerpt_to_page' ); function polygon_excerpt_to_page() { add_post_type_support( 'page', 'excerpt' ); } add_filter('nav_menu_css_class', 'special_nav_class', 10, 2); function special_nav_class($classes, $item) { if(in_array('current-menu-item',$item->classes)){ //current item $classes[]='nav_focus'; } else $classes[]='nav_normal'; //other of purpose preg_match('/[^\/]+$/', trim($item->url, '/'), $r); //get page if (is_page() && is_page($r[0])) $classes[]='active'; return $classes; } function codex_custom_init() { $labels = array( 'name' => _x('Tour', 'post type general name'), 'singular_name' => _x('Tour', 'post type singular name'), 'add_new' => _x('Add New', 'Tour'), 'add_new_item' => __('Add New Tour'), 'edit_item' => __('Edit Tour'), 'new_item' => __('New Tour'), 'all_items' => __('All Tour'), 'view_item' => __('View Tour'), 'search_items' => __('Search Tour'), 'not_found' => __('No Tour found'), 'not_found_in_trash' => __('No Tour found in Trash'), 'parent_item_colon' => '', 'menu_name' => __('Tours') ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => true, 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => null, 'supports' => array( 'title', 'thumbnail', ) ); register_post_type('tourdl',$args); } add_action( 'init', 'codex_custom_init' ); //meta box function your_prefix_get_meta_box( $meta_boxes ) { $prefix = 'tourdl_'; $meta_boxes[] = array( 'id' => 'introduction-tour', 'title' => esc_html__( 'THÔNG TIN TOUR', 'metabox-online-generator' ), 'post_types' => array( 'tourdl' ), 'context' => 'advanced', 'priority' => 'default', 'autosave' => false, 'fields' => array( array( 'name' => 'Mô tả ngắn', 'id' => 'description', 'type' => 'wysiwyg', 'raw' => false, 'options' => array( 'textarea_rows' => 10, 'teeny' => true, ), ), array( 'name' => 'Lộ trình Tour', 'id' => 'ct_tour', 'type' => 'wysiwyg', 'raw' => false, 'options' => array( 'textarea_rows' => 20, 'teeny' => true, ), ), array( 'name' => 'Dịch vụ <br>Chi tiết Tour', 'id' => 'chitiet_tour', 'type' => 'wysiwyg', 'raw' => false, 'options' => array( 'textarea_rows' => 10, 'teeny' => true, ), ), array( 'name' => 'Lưu ý', 'id' => 'luuy_tour', 'type' => 'wysiwyg', 'raw' => false, 'options' => array( 'textarea_rows' => 10, 'teeny' => true, ), ), array( 'id' => $prefix . 'matour', 'type' => 'text', 'name' => esc_html__( 'Mã Tour', 'so-khach-di' ), 'placeholder' => esc_html__( '', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'price', 'type' => 'text', 'name' => esc_html__( 'Giá tour', 'price-tour' ), 'placeholder' => esc_html__( '', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'diemden', 'type' => 'text', 'name' => esc_html__( 'Điểm đến', 'price-sale-tour' ), 'placeholder' => esc_html__( '', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'khoihanh', 'type' => 'text', 'name' => esc_html__( 'Khởi hành', 'so-khach-di' ), 'placeholder' => esc_html__( 'Liên hệ', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'songaydi', 'type' => 'text', 'name' => esc_html__( 'Số ngày đi', 'so-ngay-di' ), 'placeholder' => esc_html__( 'Trong ngày', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'phuongtin', 'type' => 'text', 'name' => esc_html__( 'Phương Tiện', 'phuong-tien' ), 'placeholder' => esc_html__( 'Xe khách', 'metabox-online-generator' ), ), array( 'id' => 'image_product', 'name' => 'Image Advanced', 'type' => 'image_advanced', 'force_delete' => false, 'max_file_uploads' => 999, // Maximum image uploads. 'max_status' => 'false', // Do not show how many images uploaded/remaining. 'image_size' => 'thumbnail', // Image size that displays in the edit page. ), /* array( 'id' => $prefix . 'pricesale', 'type' => 'text', 'name' => esc_html__( 'Giá khuyến mãi', 'price-sale-tour' ), 'placeholder' => esc_html__( '', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'timekh', 'type' => 'date', 'name' => esc_html__( 'Ngày Đi', 'metabox-online-generator' ), 'timestamp' => false, ), array( 'id' => $prefix . 'timeve', 'type' => 'date', 'name' => esc_html__( 'Ngày Về', 'metabox-online-generator' ), 'timestamp' => false, ), array( 'id' => $prefix . 'songaydi', 'type' => 'text', 'name' => esc_html__( 'Số Ngày Đi', 'so-ngay-di' ), 'placeholder' => esc_html__( 'Trong Ngày', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'sokhachdi', 'type' => 'text', 'name' => esc_html__( 'Số Khách', 'so-khach-di' ), 'placeholder' => esc_html__( 'Đoàn16 khách', 'metabox-online-generator' ), ), array( 'id' => $prefix . 'noidonkhach', 'type' => 'text', 'name' => esc_html__( 'Nơi Đón Khách', 'noi-don' ), 'placeholder' => esc_html__( 'Ninh Bình', 'metabox-online-generator' ), ), ), ); return $meta_boxes; } add_filter( 'rwmb_meta_boxes', 'your_prefix_get_meta_box' ); function tourdl_taxonomy() { $labels = array( 'name' => _x( 'Danh mục tour', 'taxonomy general name', 'textdomain' ), 'singular_name' => _x( 'Danh mục tour', 'taxonomy singular name', 'textdomain' ), 'search_items' => __( 'Search Writers', 'textdomain' ), 'popular_items' => __( 'Popular Writers', 'textdomain' ), 'all_items' => __( 'Tất cả', 'textdomain' ), 'parent_item' => null, 'parent_item_colon' => null, 'edit_item' => __( 'Sửa danh mục tour', 'textdomain' ), 'update_item' => __( 'Update danh mục tour', 'textdomain' ), 'add_new_item' => __( 'Thêm mới danh mục tour', 'textdomain' ), 'new_item_name' => __( 'New danh mục tour Name', 'textdomain' ), 'separate_items_with_commas' => __( 'Separate writers with commas', 'textdomain' ), 'add_or_remove_items' => __( 'Add or remove writers', 'textdomain' ), 'choose_from_most_used' => __( 'Choose from the most used writers', 'textdomain' ), 'not_found' => __( 'No writers found.', 'textdomain' ), 'menu_name' => __( 'Danh mục tour', 'textdomain' ), ); register_taxonomy( 'tourdl_category', //The name of the taxonomy. Name should be in slug form (must not contain capital letters or spaces). 'tourdl', //post type name array( 'hierarchical' => true, 'show_in_quick_edit' => true, 'sort' => true, 'show_ui' => true, 'show_admin_column' => true, 'labels' => $labels, //Display name 'query_var' => true, 'rewrite' => array( 'slug' => 'tourdl-status', // This controls the base slug that will display before each term 'with_front' => false // Don't display the category base before ) ) ); $types = array( 'name' => _x( 'Kiểu tour', 'taxonomy general name', 'textdomain' ), 'singular_name' => _x( 'Kiểu tour', 'taxonomy singular name', 'textdomain' ), 'search_items' => __( 'Search Writers', 'textdomain' ), 'popular_items' => __( 'Popular Writers', 'textdomain' ), 'all_items' => __( 'Tất cả', 'textdomain' ), 'parent_item' => null, 'parent_item_colon' => null, 'edit_item' => __( 'Sửa Kiểu tour', 'textdomain' ), 'update_item' => __( 'Update Kiểu tour', 'textdomain' ), 'add_new_item' => __( 'Thêm mới Kiểu tour', 'textdomain' ), 'new_item_name' => __( 'New Kiểu tour Name', 'textdomain' ), 'separate_items_with_commas' => __( 'Separate writers with commas', 'textdomain' ), 'add_or_remove_items' => __( 'Add or remove writers', 'textdomain' ), 'choose_from_most_used' => __( 'Choose from the most used writers', 'textdomain' ), 'not_found' => __( 'No writers found.', 'textdomain' ), 'menu_name' => __( 'Kiểu tour', 'textdomain' ), ); register_taxonomy( 'tourdl_type', //The name of the taxonomy. Name should be in slug form (must not contain capital letters or spaces). 'tourdl', //post type name array( 'hierarchical' => true, 'show_in_quick_edit' => true, 'sort' => true, 'show_ui' => true, 'show_admin_column' => true, 'labels' => $types, //Display name 'query_var' => true, 'rewrite' => array( 'slug' => 'tourdl-type', // This controls the base slug that will display before each term 'with_front' => false // Don't display the category base before ) ) ); } add_action( 'init', 'tourdl_taxonomy');*/