Các bước sau cuối khi bàn giao site wordpress cho khách. Để trong quá trình sử dụng của khách ổn định những bước sau rất quan trong
Vì để nó update tự động rất huy hiểm bởi version wordpress mới nhất chưa chắc gì chạy tốt trên theme và plugin hiện tại. Mở file wp-config.php
thêm vào
1 |
define( 'WP_AUTO_UPDATE_CORE', false ); |
Cái này rất cần thiết bởi người dùng thấy xuất hiện nhiều thông báo tiếng tây tiếng tàu mà không biết gì họ sẽ suy nghĩ site có vấn đề và để không bị làm phiền thì nên tắt đi. Thêm code sau vào functions.php
1 2 3 4 5 6 7 8 9 10 11 12 |
function hide_all_notices() { if (is_admin()){ remove_all_actions('admin_notices'); remove_all_actions('all_admin_notices'); } } add_action( 'in_admin_header', 'hide_all_notices', 12 ); function remove_core_updates($val){ global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,); } add_filter('pre_site_transient_update_plugins','remove_core_updates'); //hide updates for all plugins add_filter('pre_site_transient_update_themes','remove_core_updates'); //hide updates for all themes |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress