Created
May 16, 2016 12:13
-
-
Save Oceas/e90ea96ca542082b85b9749e17e86093 to your computer and use it in GitHub Desktop.
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
add_shortcode('five-o-clock', 'five_o_clock_here'); | |
//Shortcode function that accepts attributes | |
function five_o_clock_here($atts) { | |
return "It's 5 o' clock " . $atts["where"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment