permalinks on title tag
There is no way to cause your permalink structure to be reflected automatically in the title tag. Instead, you must create it yourself. This might get you started: (I had to make a lot of assumptions in this code.) function my_title() { $post = get_queried_object(); $locations = wp_get_object_terms( $post->ID, ‘location’ ); $mba_courses = wp_get_object_terms( $post->ID, … Read more