WordPress is_home = true

发布于 2024-09-30 17:17:28 字数 165 浏览 2 评论 0原文

我正在为我的 WordPress 博客使用缩略图摘录。 可以选择在档案、主页和搜索上设置缩略图。

我构建了一个额外的模板页面,仅显示新闻,因为我的主主页显示最新事件。

有什么方法可以设置另一个变量,使模板页面看起来像 is_home() ,这样它也会给我缩略图。

谢谢

I am using thumbnail excerpts for my wordpress blog.
This has to the option to set thumbnails on archives, homepage and search.

I built an extra template page to only show news as my main homepage shows the latest events.

Is there any way you can set another variable that it makes your template page look as is_home(), this way it'll give me the thumbnails as well.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福丶如此 2024-10-07 17:17:28

你可以在你的模板中尝试这个。

global $wp_query;
$wp_query->is_home = true;

You could try this in your template.

global $wp_query;
$wp_query->is_home = true;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文