代码:
<?php
$BlogPosts = new Wp_Query('showposts=2');
if($BlogPosts->have_posts()):
while($BlogPosts->have_posts()):$BlogPosts->the_post();
the_title();
endwhile;
endif;
?>
在此代码中,我已在WordPress博客上发布了多个帖子。现在,我的网站是在Codeigniter Framework上创建的,其中显示了目前正在运行的最后两篇已发布的帖子,但我在这里显示的唯一标题是,我想显示带有标题的图像,并且帖子也可以单击并转到博客。那么,我该怎么做?请帮我。
谢谢