您可以通过在save_post
行动这样,您的所有帖子都将具有自定义字段的默认值。
add_action( \'save_post\', \'wpse8170_save_post\', 10, 2 );
function wpse8170_save_post( $post_id, WP_Post $post ) {
if ( ( defined( \'DOING_AUTOSAVE\' ) && DOING_AUTOSAVE ) || !current_user_can( \'edit_post\' ) ) {
return;
}
if ( has_category( 22, $post_id ) && !get_post_meta( $post_id, \'my-custom-field\', true ) ) {
update_post_meta( $post_id, \'my-custom-field\', \'my default value\' );
}
}