Usage:

This shortcode returns the embedded content if the current subscriber is in a “failed payment” status.

[ELSE_is_failed_payment] conditional branching is supported.
Shortcode nesting is NOT supported.

Parameters:

none.

Example:

[mbr_is_failed_payment]
  Content only for members.
[ELSE_is_failed_payment]
  Content only for non-members.
[/mbr_is_failed_payment]

API:

To use this shortcode in your own PHP code, please use as follows:

// Please note that when using PHP, you must code your own true and false branches
IF (mbr_is_failed_payment()) :
  echo 'Your account is not in good standing.';
ENDIF;
</code>