Skip to content

Instantly share code, notes, and snippets.

@sjaved87
Created September 1, 2016 12:55
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 sjaved87/ac5df26fb27f904cbbc12e5efd76027a to your computer and use it in GitHub Desktop.
Save sjaved87/ac5df26fb27f904cbbc12e5efd76027a to your computer and use it in GitHub Desktop.
This shortcode will display display name of the logged in user. This is the shortcode [welcome_message].
<?php
function sjaved_welcome_message_cb(){
$current_user = wp_get_current_user();
echo 'Hello ' . $current_user->display_name ;
}
add_shortocde('welcome_message', 'sjaved_welcome_message_cb', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment