Skip to content

Instantly share code, notes, and snippets.

@carlodaniele
Created April 3, 2016 13:48
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 carlodaniele/9e8626394d23cd88df0da70569fc8a2c to your computer and use it in GitHub Desktop.
Save carlodaniele/9e8626394d23cd88df0da70569fc8a2c to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin init
*
* @link https://codex.wordpress.org/Function_Reference/add_shortcode
*/
function wpmu_user_init(){
add_shortcode( 'usermeta', 'wpmu_user_meta_shortcode' );
}
add_action( 'init', 'wpmu_user_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment