Last active
December 18, 2015 00:59
-
-
Save timoleinio/5700659 to your computer and use it in GitHub Desktop.
Example how to create your own shortcode
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 | |
add_shortcode('moikka', 'moikka_maailma'); | |
function moikka_maailma(){ | |
return 'Moikka maailma!'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment