-3

我做了谷歌,但不知道如何自动赋予 o 值

add_post_meta(0, key , 在发布时)

4

2 回答 2

1

你可以这个功能会在发布后添加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');

这将自动添加一个自定义字段

于 2012-12-21T14:47:59.983 回答
1
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' 
于 2012-12-21T15:04:07.110 回答