Create a shortcode plugin - mdhemalakhand1999/WordPressPluginDevelopment GitHub Wiki
In this tutorial we will create a simple shortCode plugin.
Here is code:
/**
* Create a shortcode
*/
function shortcode_button_func($attributes, $content) {
return sprintf('%s', $attributes['url'], $content);
}
add_shortcode('button2', 'shortcode_button_func');
Thats it. Congrats!