is there a shortcode to show text if NOT in a role?
-
I use the ‘[members_access]’ shortcode to display a button to people who have a subscription to my site.
I want to display alternate text to those who do NOT yet have a subscription – taking them to the page where they can buy one.
I have looked at the code on github, and could fork it and write a new function in functions-shortcodes.php to do the reverse of what
add_shortcode( ‘members_access’, ‘members_access_check_shortcode’ );
with something like
add_shortcode( ‘members_access_not’, ‘members_access_check_shortcode_not’ );
but is there anotehr way?
- The topic ‘is there a shortcode to show text if NOT in a role?’ is closed to new replies.