Hi everyone,
I have added these codes in functions.php
function assign_post_to_category($post_id, $post, $update) {
// Run only when a new post is created, not when updated
if (get_post_type($post_id) !== 'post') {
return;
}
$post_title = get_the_title($post_id); //...