我有一个自定义滑块,该滑块将在按钮上单击后不重新加载页面的帖子中添加下一个/上一个按钮。它工作正常,唯一的问题是它加载了在帖子编辑器中输入的内容(没有<p></p>
标签)。帖子的其他显示不存在此问题,WP似乎会将由换行符分隔的行转换为段落,但是我的自定义脚本不会。
我不知道在哪里看。任何帮助,将不胜感激。谢谢。
这是我的代码:
<script>
$(function () {
$('#mypagination').pagination({
total: <?php echo $numpages; ?>,
current: <?php echo $page; ?>,
length: 0,
size: 1,
prev: 'Previous',
next: 'Next',
click: function (options) {
$.post("<?php echo get_permalink(); ?>", {num:options.current}, function (data) {
$('.myresponse').html(data);
setTimeout(function(){
var title = $('.myresponse h3').html();
var img = $('.myresponse div[align="center"]').html();
$('#postContent .size-full.lazyloaded').removeAttr('src');
$('.myresponse h3').remove();
$('.myresponse div[align="center"]').remove();
$('#postContent noscript').remove();
var mhtml = $('.myresponse').html();
console.log(img);
$('#postContent h3').text(title);
$('#postContent div[align="center"]').html(img);
$('#postContent p').html(mhtml);
$('html,body').animate({
scrollTop: $("#postContent").offset().top - 80},
'slow');
},100);
});
}
});
});
</script>