Created
November 2, 2019 17:19
-
-
Save dalenguyen/5ce2fcc388f62c4be0c7d62409cfca7a to your computer and use it in GitHub Desktop.
Add shortcode to WordPress
This file contains 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
// 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