如何在 WordPress 中仅显示帖子的缩略图和标题?
如何在 WordPress 中仅显示帖子的缩略图和标题,如下所示: http://themes.premiumpixels .com/?theme=artiste
PS我不是在做任何广告,我只是发布了一个问题,因为我不知道如何做这样的事情。
How can I display only the thumbnail and title of a post in WordPress like here: http://themes.premiumpixels.com/?theme=artiste
P.S. I'm not advertising anything, I just posted a question because I have no idea how to do something like that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
// 从循环中删除 the_content() 或 the_excerpt() 调用
// From your loop just remove the_content() or the_excerpt() call
您需要对图像执行此操作:
http ://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/
您需要对小文本执行此操作:
在 function.php 中添加以下内容:
然后将其添加到模板中的 post_thumbnail 下方,如链接所示:
You need to do this for the image:
http://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/
And you need to do this for the little text:
Add this in function.php:
then add this below your post_thumbnail in your template as the link demonstrate you: