来自老赵茶馆的:http://zhw-island.com/wordpress/jquery-qrcode.html

A collection of web development logos in SVG :link

Svg的好处就不多说了,实际上wordpress默认是不支持svg上传的,在functions.php文件里添加以下代码即可

/* SVG支持 */
function my_upload_mimes($mimes = array()) {
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
}
add_filter('upload_mimes', 'my_upload_mimes');

标签: none

添加新评论