我正在通过Ajax将帖子加载到我在索引页面上设置的div中。
index page loop:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div>
<button class="post-link" rel="<?php the_ID(); ?>"> ADD </button>
<?php the_post_thumbnail(); ?>
<a href="<?php echo esc_url( post_permalink() ); ?>"><?php the_title(); ?></a>
</div>
<?php endwhile; endif; ?>
Div:
<div id="post-container"></div>
script:
<Script>
$(document).ready(function(){
$.ajaxSetup({cache:false});
$(".post-link").click(function(){
var post_link = $(this);
$("#post-container").html("loading...");
$("#post-container").load(post_link);
return false;
});
});
</script>
How to add posts into div with ajax and assign them specific post format?