Created
December 1, 2014 22:42
-
-
Save kureikei/4f9a3bae51d589717382 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Pronama-chan shortcode | |
*/ | |
add_shortcode('pronama-chan-icon', 'pronama_chan_icon_func'); | |
function pronama_chan_icon_func($atts) { | |
extract(shortcode_atts(array( | |
'msg' => 'おはよう!' | |
), $atts)); | |
return '<img src="http://pronama.azurewebsites.net/icogen/image/thumb01.png" /> <span>' . $msg . '</span>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment