Skip to content

Instantly share code, notes, and snippets.

@polevaultweb
Last active December 27, 2019 22:35
Show Gist options
  • Select an option

  • Save polevaultweb/c333c8d7925a0052883e3664b344ccff to your computer and use it in GitHub Desktop.

Select an option

Save polevaultweb/c333c8d7925a0052883e3664b344ccff to your computer and use it in GitHub Desktop.
<?php
add_action( 'add_post_meta', function ( $object_id, $meta_key, $_meta_value ) {
if ( $meta_key !== '_igp_id' ) {
return;
}
$category_id = 11; // Change this to the tag_id
wp_set_post_categories( $object_id, array( $category_id ) );
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment