Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: API Documentation?


techguy
Participant

@crashutah

Nope. Although, it’s often good to consult the WordPress codex as well since all of those functions can be used also.

I’ve also learned to love this piece of code to output what’s being stored in various vars (just replace $bp with the var you want to see):
echo ”

 ";
var_dump($bp);
echo "

“;
die;
(the echo should be the pre html code since this won’t display code right)

Otherwise, I look at plugins that do similar things to what I want to do to find new code or ask in the forums and sometimes people will answer with the code.

Skip to toolbar