我正在尝试使用我添加到函数中的代码在发布后添加自定义字段。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);
}
}
这个代码应该可以工作,但它不能?我更新了字段和自定义值,但从未创建自定义字段。为什么?
最合适的回答,由SO网友:AlxVallejo 整理而成
add_action(\'publish_post\'. \'add_custom_field_automatically\');
第二个add\\u操作中有一个句点。这应该是逗号:)