Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
add_shortcode( 'member', 'member_check_shortcode' );
function member_check_shortcode( $atts, $content = null ) {
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() )
return $content;
return 'сообщение не зарегестрированным';
}
Я вставил этот код в самом конце файла \includes\functions.php (перед ?>)тавьте в файл functions.php такой код:
Теперь чтобы скрыть текст от незарегистрированных посетителей, его нужно просто обозначить метками:Код:add_shortcode( 'member', 'member_check_shortcode' ); function member_check_shortcode( $atts, $content = null ) { if ( is_user_logged_in() && !is_null( $content ) && !is_feed() ) return $content; return 'сообщение не зарегестрированным'; }
[member] этот текст будет виден только зарегистрированным пользователям [/member]
Fatal error: Call to undefined function add_shortcode() in /home/site/public_html/mysite.ru/forum/includes/functions.php on line 4367
add_shortcode( 'member', 'member_check_shortcode' );