Inserting into wp_term_relationships
-
Hi,
I am trying to find the function to add information into the table ‘wp_term_relationships’.
I have a term in the wp_terms table with the data:
21, New Scenario, new-scenario, 0
So I have tried$cat_ids = array( 21 ); $term_taxonomy_ids = wp_set_post_categories( $post_ID, $cat_ids, true ); if ( is_wp_error( $term_taxonomy_ids ) ) { // There was an error somewhere and the terms couldn't be set. echo "1"; } else { echo "2"; // Success! The post's categories were set. }But that doesn’t seem to add anything. I have also tried several other functions to no avail but from what I have read I think I may be closest with this effort.
Can someone help me add the “New Scenario” term to the Post ID 1234
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Inserting into wp_term_relationships’ is closed to new replies.