Skip to content

Instantly share code, notes, and snippets.

@timoleinio
Last active December 18, 2015 00:59
Show Gist options
  • Save timoleinio/5700659 to your computer and use it in GitHub Desktop.
Save timoleinio/5700659 to your computer and use it in GitHub Desktop.
Example how to create your own shortcode
<?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