Server IP : 14.241.111.210 / Your IP : 3.17.155.11 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/taxixuanthanhninhbinh.com.vn/wp-content/taxi.theme/ |
Upload File : |
<?php include 'inc/info.php'; include 'inc/breadcrumb.php'; function theme_settup(){ register_nav_menu('mainmenu',__('Main Menu')); 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'); //setpostview(get_the_id()); // Chuyển về trình soạn thảo Classic add_filter('use_block_editor_for_post', '__return_false'); // Tắt cập nhật tự động plugin add_filter( 'auto_update_plugin', '__return_false' ); // Tắt tự động cập nhật theme add_filter( 'auto_update_theme', '__return_false' ); // Get title function wpdocs_filter_wp_title($title, $sep){ global $paged, $page; if(is_feed()) return $title; $title .= get_bloginfo('name'); $site_description = get_bloginfo('description', 'display'); if ($site_description && (is_home() || is_front_page())) $title = "$title $sep $site_description"; if ($paged >= 2 || $page >= 2) $title = "$title $sep " . sprintf(__('Page %s', 'seacitybuffet'), max($paged, $page)); return $title; } add_filter('wp_title', 'wpdocs_filter_wp_title', 10, 2); // Thêm thẻ meta function webth_meta_description(){ global $post; if(is_single()){ $des_post = strip_tags($post->post_excerpt); echo '<meta name="description" content="' . $des_post . '" />' . "\n"; } if(is_home()){ echo '<meta name="description" content="'.get_bloginfo("description").'" />'. "\n"; } if(is_category()){ $des_cat = strip_tags(category_description()); echo '<meta name="description" content="' . $des_cat . '" />' . "\n"; } } add_action('wp_head', 'webth_meta_description');