我的网站需要有基于图片的帖子,这意味着帖子只是一张图片。 现在我尝试使用自定义帖子类型实现它,但是遇到了问题, 像类别没有显示正确的帖子,分页导致问题等。
现在我想我不需要常规帖子,如果我可以编辑它们 只启用特色图像选项,生活会更容易。
但我没有找到任何有关此事的信息。
任何人都可以帮助我吗?
答案 0 :(得分:0)
要添加精选图片支持/选项,只需将以下代码段添加到位于主题根文件夹内的functions.php文件中
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
}
并在模板中显示特色图片,您可以
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail(); // will show the featured image if you have set any for the post
}
适用于Wordpress版本-2.9及更高版本。
当您添加新帖子时,只需找到精选图片元框并从那里设置精选图片。
您还可以在前端设置图像尺寸(取决于将显示的图像),只需查看here。