如何在WordPress中使用内联SVG

时间:2013-04-25 作者:Archimedes Trajano

我试图在我的帖子中加入SVG,但WordPress似乎删除了内容。

e、 g。

 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190">
 <polygon points="100,10 40,180 190,60 10,60 160,180"
 style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;">
 </svg>
渲染到

 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190"></svg>
如果没有像raw\\u plugin这样的插件,是否可以做到这一点

1 个回复
最合适的回答,由SO网友:qed 整理而成

根据this post, 如果将所有svg块放入one line, 它将被渲染。

这应该可以:

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190"> <polygon points="100,10 40,180 190,60 10,60 160,180" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;"> </svg>

结束

相关推荐

Limit popular posts by days

我正在使用这个get\\u posts数组按评论检索前15个热门帖子。问题是,它显示了所有那些在博客中添加的评论很高的帖子。因此,列表有时会发生变化,但大部分时间保持不变。如何限制/显示过去7天的帖子?这将显示上周评论最多的帖子。谢谢这是我的代码:global $post; $args = array( \'orderby\' => \'comment_count\', \'order\' => \'DESC\' , \'numberposts\' =