Created
July 16, 2020 10:19
-
-
Save digamber89/c3e0865bc219ce875ade0d0cbab1c308 to your computer and use it in GitHub Desktop.
Shortcode to add join via browser link
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @author Deepen. | |
* @created_on 11/29/19 | |
*/ | |
global $zoom_meetings; | |
?> | |
<a href="<?php echo $zoom_meetings->join_url; ?>" title="Join Meeting">Join Meeting</a> | |
<?php | |
$join_via_broswer_link = vczapi_get_browser_join_shortcode($zoom_meetings->id,false,true); | |
echo '<a href="'.$join_via_broswer_link.'">Join via Browser</a>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment