Profile picture of dunc active 2 months, 2 weeks ago

dunc

@dunc
  • r-a-y posted on the forum topic Site Members Loop & Variables in the group Creating & Extending:

    @dunc – If you want a global variable, then (surprise, surprise!) use a global variable or a define. In wp-config.php or /wp-content/plugins/bp-custom.php, you can either do this: global $my_var; $my_var = WHATEVER; or: define( 'MY_VAR', WHATEVER ); Then in your page template or anywhere else, you do this: global $my_var; if (…[Read more]

    1 year, 10 months ago