Last active
December 26, 2022 23:29
-
-
Save brenna/7377802 to your computer and use it in GitHub Desktop.
WordPress function to auto-populate a taxonomy with a custom post type's entries.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_tax_init(){ | |
//set some options for our new custom taxonomy | |
$args = array( | |
'label' => __( 'My Custom Taxonomy' ), | |
'hierarchical' => true, | |
'capabilities' => array( | |
// allow anyone editing posts to assign terms | |
'assign_terms' => 'edit_posts', | |
/* but you probably don't want anyone | |
* except admins messing with what | |
* gets auto-generated! */ | |
'edit_terms' => 'administrator' | |
) | |
); | |
// create the custom taxonomy and attach it to a custom post type | |
register_taxonomy( 'my-taxonomy', 'post-type-A', $args); | |
} | |
add_action( 'init', 'custom_tax_init' ); | |
function update_custom_terms($post_id) { | |
// only update terms if it's a post-type-B post | |
if ( 'post-type-B' != get_post_type($post_id)) { | |
return; | |
} | |
// don't create or update terms for system generated posts | |
if (get_post_status($post_id) == 'auto-draft') { | |
return; | |
} | |
/* | |
* Grab the post title and slug to use as the new | |
* or updated term name and slug | |
*/ | |
$term_title = get_the_title($post_id); | |
$term_slug = get_post( $post_id )->post_name; | |
/* | |
* Check if a corresponding term already exists by comparing | |
* the post ID to all existing term descriptions. | |
*/ | |
$existing_terms = get_terms('my-taxonomy', array( | |
'hide_empty' => false | |
) | |
); | |
foreach($existing_terms as $term) { | |
if ($term->description == $post_id) { | |
//term already exists, so update it and we're done | |
wp_update_term($term->term_id, 'my-taxonomy', array( | |
'name' => $term_title, | |
'slug' => $term_slug | |
) | |
); | |
return; | |
} | |
} | |
/* | |
* If we didn't find a match above, this is a new post, | |
* so create a new term. | |
*/ | |
wp_insert_term($term_title, 'my-taxonomy', array( | |
'slug' => $term_slug, | |
'description' => $post_id | |
) | |
); | |
} | |
//run the update function whenever a post is created or edited | |
add_action('save_post', 'update_custom_terms'); |
@badfeather Could you please explain why you had to go this route?
@samabp Sure. I needed to use category/term descriptions for what they're intended for (writing a description of that category/term). It seemed to make more sense to take advantage of taxonomy term meta to save these relationship ID values, rather than hacking them into the description field.
@badfeather Thanks a lot, makes sense to me.
Is there a way to use woocommerce product attributes (which is a custom taxonomy) with this code?
Thanks!
hi @caesarsamsi, I wrote this a very long time ago and am not familiar with woocommerce so I'm not sure if that's possible or not. good luck!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I love this solution for generating taxonomy terms based on post types, however I was looking for a solution that didn't rely on term descriptions, since I needed to use those in my theme. I ended up using
get_term_meta()
andupdate_term_meta()
instead of term descriptions.Modified function below: