Skip to content

Instantly share code, notes, and snippets.

@dalenguyen
Created November 2, 2019 17:19
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 dalenguyen/5ce2fcc388f62c4be0c7d62409cfca7a to your computer and use it in GitHub Desktop.
Save dalenguyen/5ce2fcc388f62c4be0c7d62409cfca7a to your computer and use it in GitHub Desktop.
Add shortcode to WordPress
// functions.php
// custom firebase short code
function custom_firebase_func($atts)
{
return "<div id='custom-firebase'>Test</div>";
}
add_shortcode('custom_firebase', 'custom_firebase_func');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment