メソッドには2つのステップがあります。1つはカスタムメタボックスフィールドデータを保存する関数(save_postにフック)、2つ目はその新しいpost_meta(保存したばかり)を読み取り、それを検証して結果を変更する関数です。必要に応じて保存します(save_postにもフックされますが、最初の後で)。バリデーター関数は、検証が失敗した場合、実際にはpost_statusを「保留」に戻し、投稿の公開を効果的に防ぎます。
save_post関数は頻繁に呼び出されるため、各関数には、ユーザーがパブリッシュする意味がある場合にのみ実行するチェックがあり、カスタム投稿タイプ(mycustomtype)に対してのみ実行されます。
私は通常、投稿が公開されなかった理由をユーザーに知らせるためにいくつかのカスタム通知メッセージも追加しますが、それらをここに含めるには少し複雑になりました...
私はこの正確なコードをテストしていませんが、大規模なカスタム投稿タイプのセットアップで行ったものを簡略化したバージョンです。
add_action('save_post', 'save_my_fields', 10, 2);
add_action('save_post', 'completion_validator', 20, 2);
function save_my_fields($pid, $post) {
// don't do on autosave or when new posts are first created
if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || $post->post_status == 'auto-draft' ) return $pid;
// abort if not my custom type
if ( $post->post_type != 'mycustomtype' ) return $pid;
// save post_meta with contents of custom field
update_post_meta($pid, 'mymetafield', $_POST['mymetafield']);
}
function completion_validator($pid, $post) {
// don't do on autosave or when new posts are first created
if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || $post->post_status == 'auto-draft' ) return $pid;
// abort if not my custom type
if ( $post->post_type != 'mycustomtype' ) return $pid;
// init completion marker (add more as needed)
$meta_missing = false;
// retrieve meta to be validated
$mymeta = get_post_meta( $pid, 'mymetafield', true );
// just checking it's not empty - you could do other tests...
if ( empty( $mymeta ) ) {
$meta_missing = true;
}
// on attempting to publish - check for completion and intervene if necessary
if ( ( isset( $_POST['publish'] ) || isset( $_POST['save'] ) ) && $_POST['post_status'] == 'publish' ) {
// don't allow publishing while any of these are incomplete
if ( $meta_missing ) {
global $wpdb;
$wpdb->update( $wpdb->posts, array( 'post_status' => 'pending' ), array( 'ID' => $pid ) );
// filter the query URL to change the published message
add_filter( 'redirect_post_location', create_function( '$location','return add_query_arg("message", "4", $location);' ) );
}
}
}
複数のメタボックスフィールドの場合は、補完マーカーを追加して、post_metaをさらに取得し、テストを実行するだけです。