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和bbPress写一个论坛。我必须在标题之前在此站点上显示一个元素,但前提是当前站点是论坛。如何检查这个网站是否是论坛?
wordpress
bbPress
您可以使用is_bbpress()并检查页面是否使用 bbpress。例子
is_bbpress()
if ( class_exists('bbPress') ) { if ( bbp_is_forum_archive() ) { echo 'You are on the Support Forums Archives. These are all the forums.'; } }