add custom taxonomy into permalinks post_type_link code example
Example 1: add custom taxonomy into permalinks post_type_link
function wpa_course_post_link( $post_link, $id = 0 ){
$post = get_post($id);
if ( is_object( $post ) ){
$terms = wp_get_object_terms( $post->ID, 'course' );
if( $terms ){
return str_replace( '%course%' , $terms[0]->slug , $post_link );
}
}
return $post_link;
}
add_filter( 'post_type_link', 'wpa_course_post_link', 1, 3 );
Example 2: add custom taxonomy into permalinks post_type_link
'rewrite' => array('slug' => 'courses/%course%')