我正在制作一个插件,在我的一个页面上我想使用wp编辑器,所以我插入了这样的wp编辑器(以下代码示例)
<?php
$settings = array(
'wpautop' => false,
'textarea_rows' => 5,
'tinymce' => array( 'plugins' => 'wordpress' )
);
$content = $item['sponsor'];
$editor_id = 'sponsor';
wp_editor( $content, $editor_id, $settings );
?>
但问题是当我使用wp编辑器添加一些链接,如
<a href="http://facebook.com/myurlid"><img src="http://myimagepath" /></a>
wordpress在数据库中写入,但会向这样的网址添加尾部斜杠
<a href=\"http://facebook.com/myurlid\"><img src=\"http://myimagepath\" /></a>
为什么这样做?以及任何避免这种情况的解决方案?
答案 0 :(得分:0)
我在向数据库提交内容之前找到了答案,然后使用stripslashes
stripslashes($_POST['sponsor']);