Bật Debug wordpress: mở file wp-config.php copy code dưới đây vào
1 2 3 4 5 |
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', true ); @ini_set( 'display_errors', 0 ); define( 'SCRIPT_DEBUG', true ); |
Anh chị sử dụng function sau:
1 2 3 4 5 6 7 8 9 |
function write_log($log) { if (true === WP_DEBUG) { if (is_array($log) || is_object($log)) { error_log(print_r($log, true)); } else { error_log($log); } } } |
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