Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让我的图片标题只出现在我的主页上?另外,如何在 WordPress 中编辑代码来解决这个问题?
这是我正在使用的网站: taylorsienkiewicz.wordpress.com
谢谢!
您可以使用此 wordpress 功能is_front_page()来处理此类事情,只需添加 if 条件
is_front_page()
if(is_front_page()) { /*your header image goes here and you condition*/ }
你有多种方法可以做到这一点,你可以使用 header.php 或者你可以制作一个主页模板并将这个条件写成你的主页模板。