Skip to content

Instantly share code, notes, and snippets.

@kureikei
Created December 1, 2014 22:42
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 kureikei/4f9a3bae51d589717382 to your computer and use it in GitHub Desktop.
Save kureikei/4f9a3bae51d589717382 to your computer and use it in GitHub Desktop.
<?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