将下面的代码添加到当前主题的 functions.php 文件:
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, 'field-name', 'custom value', true);
}
}
只需替换其中的自定义栏目名称:field-name,值:custom value
之后,当你发布文章后,相应的自定义栏目名称及值会自动添加到文章中。