Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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 );
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #add #custom #taxonomy #permalinks
ADD COMMENT
Topic
Name
6+9 =