Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 03:46
Show Gist options
  • Select an option

  • Save spencejs/5218809 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5218809 to your computer and use it in GitHub Desktop.
Add Custom Field and Value To All Pages On Publish In Wordpress
//Add Custom Field and Value to all pages
add_action('publish_page', '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, 'ngg_gal_Images', '42', true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment