Re: forum underconstruction page
Just a note, if you want to send a http response code, you need to use bb_init
action (check init action for WP). If you use bb_head
, you will get error since there is something has been sent to client side before your own header. And your own response code won’t be effective.
I suggest you send header, bb_load_template
and then exit
in the action hook.