Ребят что не так сделал вместо видео отображается html
add_shortcode( 'member', 'true_logged_in_user_content' );
function true_logged_in_user_content( $atts, $content = null ) {
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() ) {
$atts = shortcode_atts( array(
'width' => 'height',
'mp4' => 'video',
), $atts );
return $content;
}
return '';
}