下面的代码将向帖子中添加默认的自定义字段(将代码插入到themes function.php中)。
add_action(\'wp_insert_post\', \'set_default_custom_fields\');
function set_default_custom_fields($post_id){
if ( $_GET[\'post_type\'] == \'post\' ) {
add_post_meta($post_id, \'Field Name\', \'\', true);
add_post_meta($post_id, \'Another Field Name\', \'\', true);
}
return true;
}
默认情况下,这将为您的帖子添加一个空的自定义字段。如果您也希望在默认情况下输入值,请使用下面的代码。
add_action(\'wp_insert_post\', \'set_default_custom_fields\');
function set_default_custom_fields($post_id){
if ( $_GET[\'post_type\'] == \'post\' ) {
add_post_meta($post_id, \'Field Name\', \'Field Value\', true);
}
return true;
}