Info
- 5 posts
- 2 voices
- Started 3 years ago by Thion
- Latest reply from Thion
- This topic is resolved
Display only if is_front ?
-
- Posted 3 years ago #
In bbPress there's a function "<?php bb_location(); ?>" - can this be used to create something like this:
if ( current page is front page only ) : echo "something"; endif;
I need to display welcoming box only on my front page, but I don't really understand what this how to use bb_location() for this (if this is possible at all)
-
- Posted 3 years ago #
There already is a function
is_front()
if (is_front()) { // do stuff }lots of related functions in
template-functions.phpif you need multiple pages, a trick I like to use is
if (in_array(bb_get_location(),array('topic-page','tag-page','forum-page'))) { // do stuff } -
- Posted 3 years ago #
Hmm - documentation is really needed... :)
-
- Posted 3 years ago #
Your best bet is to study other plugins.
-
- Posted 3 years ago #
That's how I'm writing Static Pages plugin now ;).
-
You must log in to post.