bux23
7/26/2017 - 10:13 AM

Post type permalink prefix

Post type permalink prefix

//////////////////////////////////////////////////////////////
///////// ADD MEDIA PREFIX TO ATTACHMENT PERMALINKS
//////////////////////////////////////////////////////////////
add_filter( 'wp_unique_post_slug', 'media_premalink_prefix', 10, 6 );
function media_premalink_prefix( $slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug ) {
    if ( $post_type == 'attachment') {  
        $prefix = 'media';
        if ( strripos($slug, $prefix) == 0 ) {
            $slug = $prefix . $slug;
        }
    }
    return $slug;
}