我做了谷歌,但不知道如何自动赋予 o 值
add_post_meta(0, key , 在发布时)
你可以这个功能会在发布后添加o值
function add_custom_field_automatically($post_ID) { global $wpdb;
if(!wp_is_post_revision($post_ID)) {
add_post_meta($post_ID, '_my_key', '0', true);
}
}
add_action('publish_page', 'add_custom_field_automatically');
add_action('publish_post', 'add_custom_field_automatically');
这将自动添加一个自定义字段
function add_custom_field_automatically($post_ID) { global $wpdb;
if(!wp_is_post_revision($post_ID)) {
add_post_meta($post_ID, '_my_key', '0', true);
}
}
add_action('publish_page', 'add_custom_field_automatically');
add_action('publish_cystom_post_type', 'add_custom_field_automatically'