I want to do this so I can simply use the category as a link in my menu to see all posts of that category.
I have found this forum thread on this subject but I don't understand it.
It has the following solution:
function add_category_automatically($post_ID) {
global $wpdb;
if(!wp_is_post_revision($post_ID)) {
$category = array (4);
wp_set_object_terms( $post_ID, $category, 'category');
}
}
add_action('publish_houses', 'add_category_automatically');
But I'm not sure what to put in the add_action function instead of publish_houses and what should go in $post_id. I had hope to assign it in my functions.php file where I create my custom post type.
Ok, I have changed my code to:
function add_category_automatically($post_ID) {
global $wpdb;
if(!wp_is_post_revision($post_ID) && get_post_type($post_ID) == "offered") {
$category = array (7);
wp_set_object_terms( $post_ID, $category, 'category');
}
}
add_action('publish_post', 'add_category_automatically');
Updated function:
global $wpdb;
if(!wp_is_post_revision($post_ID)) {
$category = array (7);
wp_set_object_terms( $post_ID, $category, 'category');
}
}
add_action('publish_offered', 'add_category_automatically');