Skip to content

Instantly share code, notes, and snippets.

@BinaryMoon
Last active November 5, 2018 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BinaryMoon/7b5705be7a71995b72399609307f5c85 to your computer and use it in GitHub Desktop.
Save BinaryMoon/7b5705be7a71995b72399609307f5c85 to your computer and use it in GitHub Desktop.
Add Apex Live Chat code to footer of site
<?php
/**
* Plugin Name: Add Apex Live Chat
* Plugin URI: https://prothemedesign.com
* Description: Add the Apex live chat script to the wp_foot
* Author: Ben Gillbanks
* Version: 1.0
* Author URI: https://prothemedesign.com
* Text Domain: ptd
*/
function ptd_apex_live_chat() {
?>
<script src="//www.apex.live/scripts/invitation.ashx?company=bassirilaw"></script>
<?php
}
add_action( 'wp_footer', 'ptd_apex_live_chat' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment