使用wordpress mysql DB中的单引号获取内容无法正常显示

时间:2016-05-17 20:39:54

标签: php mysql wordpress

我有一个自定义构建页面,其中我从我的Wordpress博客站点获取帖子标题和发布内容。它在网站上显示正常,但在自定义php页面中,特殊字符(')正在打印垃圾。

这就是我编写php块的方法

$get_post_sql = mysqli_query($con, "SELECT * FROM nn_posts WHERE post_status='publish' and post_type = 'post' ORDER BY ID desc LIMIT 15");
     while($post_list = mysqli_fetch_assoc($get_post_sql)){
         echo $post_list['post_name']."<br>";
     }

如何完美打印?

0 个答案:

没有答案