您好,我正在尝试通过ID和缩略图内容显示帖子标题,我有我的代码,但这会显示所有内容,我只想显示帖子标题、类别和该帖子的简短内容。我有一个代码,但它显示了所有内容,谢谢
如何通过ID及其缩略图内容显示帖子标题
1 个回复
SO网友:Arvind Pal
For Display post title inside the loop you can use following
For Post title <?php the_title(); ?>
For Post Short Content <?php the_excerpt(); ?>
For Post Category <?php twentyten_posted_in(); ?>
Or Display post title out side the loop
use global variable $post <?php global $post; ?>
For Post title <?php $post->post_title; ?>
For Post Short Content <?php $post->post_excerpt; ?>
结束