我在 wordpress 中有一个代码,它可以让我获得我在后端提供的前 8 个投资组合图像。应该有 20 个投资组合项目的限制,我想要一个按钮加载更多,每次单击按钮时,需要再加载 4 个投资组合项目。新项目应该加载ajax,有人知道吗?
<?php
$posts = get_posts(array(
'numberposts' => 8,
'post_status' => 'publish',
'post_type' => 'cases',
'hierarchial' => true,
'orderby' => 'menu_order',
'order' => 'ASC'
));
$key = 0;
if($posts){
foreach($posts as $post){
echo '<div class="portfolio-item-'.$key.'" data-nonce="'. $nonce .'">';
echo '<a href="#" rel="'.get_the_ID().'" class="portfolio-link">';
echo get_the_post_thumbnail($post->ID, 'portfolio-size');
echo '</a>';
echo '</a></div>'; /*END PORTFOLIO-item*/
$key ++;
}
echo '<div class="buttonmore">Click me to see more work</div>';
}
?>