Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WordPress-Handbuch/777e49797faf05e4f129e492ff70ca59 to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/777e49797faf05e4f129e492ff70ca59 to your computer and use it in GitHub Desktop.
WordPress Shortcode via functions.php
function wordpress_handbuch_shortcode( ) {
return '<a href="https://wordpress-handbuch.com">WordPress-Handbuch.com</a>';
}
add_shortcode( 'wphb', 'wordpress_handbuch_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment