Sử dụng WordPress (tích hợp) Xử lý lỗi
Đừng chỉ return;
nếu một số người dùng nhập sai. Cung cấp cho họ một số thông tin về đã được thực hiện sai.
function some_example_fn( $args = array() )
{
// If value was not set, build an error message
if ( ! isset( $args['some_value'] ) )
$error = new WP_Error( 'some_value', sprintf( __( 'You have forgotten to specify the %1$s for your function. %2$s Error triggered inside %3$s on line %4$s.', TEXTDOMAIN ), '$args[\'some_value\']', "\n", __FILE__, __LINE__ ) );
// die & print error message & code - for admins only!
if ( isset( $error ) && is_wp_error( $error ) && current_user_can( 'manage_options' ) )
wp_die( $error->get_error_code(), 'Theme Error: Missing Argument' );
// Elseif no error was triggered continue...
}
Một lỗi (đối tượng) cho tất cả
Bạn có thể thiết lập một đối tượng lỗi toàn cầu cho chủ đề hoặc plugin của mình trong quá trình bootstrap:
function bootstrap_the_theme()
{
global $prefix_error, $prefix_theme_name;
// Take the theme name as error ID:
$theme_data = wp_get_theme();
$prefix_theme_name = $theme_data->Name;
$prefix_error = new WP_Error( $theme_data->Name );
include // whatever, etc...
}
add_action( 'after_setup_theme', 'bootstrap_the_theme' );
Sau này bạn có thể thêm lỗi không giới hạn theo yêu cầu:
function some_theme_fn( $args )
{
global $prefix_error, $prefix_theme_name;
$theme_data = wp_get_theme();
if ( ! $args['whatever'] && current_user_can( 'manage_options' ) ) // some required value not set
$prefix_error->add( $prefix_theme_name, sprintf( 'The function %1$s needs the argument %2$s set.', __FUNCTION__, '$args[\'whatever\']' ) );
// continue function...
}
Sau đó, bạn có thể lấy tất cả chúng ở cuối chủ đề của bạn. Bằng cách này, bạn không làm gián đoạn hiển thị trang và vẫn có thể xuất tất cả các lỗi để phát triển
function dump_theme_errors()
{
global $prefix_error, $prefix_theme_name;
// Not an admin? OR: No error(s)?
if ( ! current_user_can( 'manage_options' ) ! is_wp_error( $prefix_error ) )
return;
$theme_errors = $prefix_error->get_error_messages( $prefix_theme_name );
echo '<h3>Theme Errors</h3>';
foreach ( $theme_errors as $error )
echo "{$error}\n";
}
add_action( 'shutdown', 'dump_theme_errors' );
Bạn có thể tìm thêm thông tin tại Q này . Một vé liên quan để sửa lỗi "làm việc cùng nhau" WP_Error
và wp_die()
được liên kết từ đó và một vé khác sẽ theo sau. Bình luận, phê bình và như vậy được đánh giá cao.