March 2020
Beginner
660 pages
18h 28m
English
Follow these steps to conditionally load different content for guests and members:
function wpccp_chapter2_conditional_user_content($content) { if( is_user_logged_in() ){ $content .= "<p>Additional Content for members </p>"; } return $content;}add_filter('the_content', 'wpccp_chapter2_conditional_user_content');
Read now
Unlock full access