Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //zobrazení textu pro nepřihlášené
- add_shortcode('UZIVATEL','show_user_content');
- function show_user_content($atts,$content = null){
- global $post;
- if (!is_user_logged_in()){
- return "Pro zobrazení se musíte " . wp_login_url( get_permalink($post->ID) ) . ' .';
- }
- return $content;
- }
- add_shortcode('HOST','show_guest_content');
- function show_guest_content($atts,$content){
- if (!is_user_logged_in()){
- return $content;
- }
- return '';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement