How to Create Shortcode in Wordpress

Go to theme function.php file and add code:  
  1. function includeme_call() {  
  2. $i = get_template_directory_uri();  
  3. return $i;  
  4. }  
  5. add_shortcode('showme''includeme_call');