post_type, $custom_link_types ) ) { $custom_url = get_post_meta( $post->ID, '_alt_link', true ); //use custom link if available if ( strlen( $custom_url ) ) { return $custom_url; } return $url; } return $url; } add_filter( 'post_link', 'a13fe_custom_permalink', 10, 3 ); add_filter( 'post_type_link', 'a13fe_custom_permalink', 10, 3 );