显示自定义帖子和默认帖子

时间:2013-05-16 作者:Prateek

我创建了一个名为“image”的自定义帖子类型。现在,我的主题在主页上以三个参数显示帖子——新鲜、特色、随机(我觉得很幸运)。如何在那里添加自定义帖子。这是首页文件-front-page.php

1 个回复
SO网友:Core

要在页面上显示自定义帖子类型,请尝试以下操作

//place code to display the title here
if ( get_post_type( $post->ID ) == \'posttypename\' ){
  //place code to display fields here
} else {
  //place code to display excerpt here
}

结束

相关推荐