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.
私はwordpressandbbPressを使ってフォーラムを書いています。このサイトのヘッダーの前に要素を表示する必要がありますが、現在のサイトがフォーラムの場合のみです。このサイトがフォーラムかどうかを確認するにはどうすればよいですか?
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.'; } }