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 有两个标题。一种用于特定的帖子页面,一种显示在首页、类别页面、搜索页面等。
如何才能做到这一点?
是的,你可以试试这样的
<title> <?php if (is_single()) { wp_title('',true); } else { bloginfo('name') ?> — <?php bloginfo('description'); } ?> </title>
另外,请查看这篇文章。