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 认为请求最后一篇文章的那种链接,site.com/wp/lastpost-non-themed例如……
site.com/wp/lastpost-non-themed
如果你会编程应该没问题。:)
您可以创建一个仅显示帖子摘要的页面,并将include()其显示在其他页面上。
include()
循环这样的事情应该这样做:
<?php the_excerpt(); ?> <a href="<?php the_permalink(); ?>">Read More</a>