// 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, 'pubannonce', 'yes', true);
add_post_meta($post_ID, 'ref', 'no', true);
}
}
add_post_meta($post_ID, 'CUSTOM KEY', 'CUSTOM VALUE', true);
There are currently 1 users browsing this thread. (0 members and 1 guests)