web-dev-qa-db-ja.com

捕まえ方・対処方法 WP エラーオブジェクト

Wp_insert_post()を含むいくつかのWP関数を直接プラグイン内で実行しています。何か問題が発生した場合、これはWP Errorオブジェクトを返します。エラー?組み込みのWP関数またはPHP例外を使用するか、または何もしません。

14
Dunhamzzz
  1. 関数の戻り値を変数に代入します。

  2. is_wp_error() で変数を確認してください。

  3. trueがそれに応じて処理する場合、例えば trigger_error() からのメッセージを伴う WP_Error->get_error_message() .

  4. false - 通常どおりに進みます。

使用法:

function create_custom_post() {
  $postarr = array();
  $post = wp_insert_post($postarr);
  return $post;
}

$result = create_custom_post();

if ( is_wp_error($result) ){
   echo $result->get_error_message();
}
20
Rarst

ヘイ、

まず、天候をチェックして、結果がWP_Errorオブジェクトであるかどうかを確認します。

$id = wp_insert_post(...);
if (is_wp_error($id)) {
    $errors = $id->get_error_messages();
    foreach ($errors as $error) {
        echo $error; //this is just an example and generally not a good idea, you should implement means of processing the errors further down the track and using WP's error/message hooks to display them
    }
}

これは通常の方法です。

ただしWP_Errorオブジェクトは、念のために一般的なエラーストアとして機能するために、エラーを発生させることなくインスタンス化できます。もしそうしたいのなら、get_error_code()を使ってエラーがないかチェックすることができます。

function my_func() {
    $errors = new WP_Error();
    ... //we do some stuff
    if (....) $errors->add('1', 'My custom error'); //under some condition we store an error
    .... //we do some more stuff
    if (...) $errors->add('5', 'My other custom error'); //under some condition we store another error
    .... //and we do more stuff
    if ($errors->get_error_code()) return $errors; //the following code is vital, so before continuing we need to check if there's been errors...if so, return the error object
    .... // do vital stuff
    return $my_func_result; // return the real result
}

そうすれば、上のwp_insert_post()の例のように、返されたエラーのプロセスをチェックすることができます。

Classは Codex に文書化されています。
そして ここにちょっとした記事 もあります。

11
wyrfel
$wp_error = wp_insert_post( $new_post, true); 
                              echo '<pre>';
                              print_r ($wp_error);
                              echo '</pre>';

これはwordpressのpost insert機能の何が問題なのかを正確に示してくれるでしょう。やってみなよ !

1
user4772