WordPress 3.5开始有自动嵌入国外网站内容的功能,在写文章的时候,只要包含网站的url,即会通过Auto Embeds (oEmbed)功能,将文章引入。
如果不需要这个功能,可以在你的WordPress主题中把它去掉,functions.php 文件中加入:
remove_filter( 'the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );
WordPress 3.5开始有自动嵌入国外网站内容的功能,在写文章的时候,只要包含网站的url,即会通过Auto Embeds (oEmbed)功能,将文章引入。
如果不需要这个功能,可以在你的WordPress主题中把它去掉,functions.php 文件中加入:
remove_filter( 'the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );