Skip to content

Instantly share code, notes, and snippets.

@wbxpress
Created June 12, 2021 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wbxpress/f80bfe86418ac8b0ab9b443ac20d3669 to your computer and use it in GitHub Desktop.
Save wbxpress/f80bfe86418ac8b0ab9b443ac20d3669 to your computer and use it in GitHub Desktop.
function wbxp_member_check_shortcode( $atts, $content = null ) {
$infotext = 'Please <a href="/wp-login.php">Login</a> to <b>Download the PDF</b> file.';
if ( is_user_logged_in() && !is_feed() ) {
return wpautop(do_shortcode($content));
}
else {
return '<blockquote>' . html_entity_decode($infotext) . '</blockquote>';
}
}
add_shortcode('member', 'wbxp_member_check_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment