add_filter('post_type_link', function($post_link, $post) { if ($post->post_type !== 'tool') return $post_link; $terms = get_the_terms($post->ID, 'tool-category'); if ($terms && !is_wp_error($terms)) { $post_link = home_url('/' . $terms[0]->slug . '/' . $post->post_name . '/'); } return $post_link; }, 10, 2); add_action('init', function() { add_rewrite_rule( '^([^/]+)/([^/]+)/?$', 'index.php?post_type=tool&name=$matches[2]', 'top' ); });

Lifestyle

This text is pulled in from your category description