Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created December 19, 2022 14:43
Show Gist options
  • Save thierrypigot/779da707e742e2acc37979d690338686 to your computer and use it in GitHub Desktop.
Save thierrypigot/779da707e742e2acc37979d690338686 to your computer and use it in GitHub Desktop.
Shortcode 1
<?php
function my_custom_shortcode() {
echo 'Hello World!';
}
add_shortcode('hello_world', 'my_custom_shortcode');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment