Skip to content

Instantly share code, notes, and snippets.

@szbl
Created November 29, 2013 15:38
Show Gist options
  • Save szbl/7707442 to your computer and use it in GitHub Desktop.
Save szbl/7707442 to your computer and use it in GitHub Desktop.
<?php
function ramdin_the_content( $content )
{
if ( is_user_logged_in() )
return $content;
if ( 'product' == get_post_type() )
{
$content = 'Please <a href="' . esc_url( site_url( '/wp-login.php' ) ) . '">login to view this product</a>.';
}
return $content;
}
add_filter( 'the_content', 'ramdin_the_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment