你可以尝试alter the allowed protocols.
function wp_allowed_protocols_unc_wpse_100080($protocols) {
return $protocols + array(\'file\');
}
add_filter(\'kses_allowed_protocols\',\'wp_allowed_protocols_unc_wpse_100080\');
并添加表单的链接
file://///path/to/file.txt
-- 看见
https://stackoverflow.com/questions/1369147/linking-a-unc-network-drive-on-an-html-page我不知道这是否有效。需要五次大幅度削减可能是一个问题。
您还可以创建一个短代码。
function unc_link_wpse_100078($atts,$content) {
return \'<a href="file://///\'.$content.\'">\'.$content.\'</a>\';
}
add_shortcode(\'unc\',\'unc_link_wpse_100078\');
添加要发布的链接
[unc]path/to/file.txt[/unc]
这是一个非常简单的版本,但它应该在后期内容过滤器中生存。我的猜测是,这一选择将是迄今为止最轻松的。