我使用wordpress
和bbPress
撰写论坛。我必须在标题之前在此站点上显示一个元素,但仅限当前站点是论坛时。如何查看该网站是否为论坛?
答案 0 :(得分:0)
您可以使用is_bbpress()
并检查网页是否使用bbpress。
实施例
if ( class_exists('bbPress') ) {
if ( bbp_is_forum_archive() ) {
echo 'You are on the Support Forums Archives. These are all the forums.';
}
}