Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Last active August 29, 2015 14:28
Show Gist options
  • Save mikeyarce/bdf0ae119d4dd9395a21 to your computer and use it in GitHub Desktop.
Save mikeyarce/bdf0ae119d4dd9395a21 to your computer and use it in GitHub Desktop.
<?php
// Hook In
add_action( 'woo_top', 'woo_hello' );
// Our hooked in Function
function woo_hello() {
echo "Hello World";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment