function custom_h5p_editor_shortcode() { if (!is_user_logged_in()) { return '

Please log in to create content.

'; }ob_start(); echo do_shortcode('[h5p-new]'); return ob_get_clean(); } add_shortcode('h5p_frontend_editor', 'custom_h5p_editor_shortcode');