is_home()类似于WordPress的自定义帖子类型的函数

问题描述 投票:0回答:1

我正在使用自定义帖子类型名称新闻

为此,我的文件是:

archive-news.php
single-news.php

现在,我需要跟踪我是否正在使用新闻页面解决某些侧边栏内容问题。

在Wordpress中,我们有这个:

is_home() 
is_single()

有没有办法做到这一点?

is_news_home()
is_news_single()
wordpress post
1个回答
3
投票

对于


archive-news.php:

if (is_post_type_archive('news')) { /* code */ } 对于

single-news.php

if (is_singular('news')) { /* code */ }

© www.soinside.com 2019 - 2024. All rights reserved.