tools/shortcode-generator
WordPress Shortcode Generator
WordPress Shortcode Generator is a tool that allows WordPress users to create custom shortcodes, turning complex operations into simple ones.
snippet.php
// Shortcode: [my_shortcode_button color="blue"]
function wp_skills_my_shortcode_button_shortcode( $atts ) {
$atts = shortcode_atts(
array(
'color' => 'blue',
),
$atts,
'my_shortcode_button'
);
$color = $atts['color'];
// Your code...
// A shortcode has to RETURN its output. Anything echoed here is printed
// where WordPress happens to be rendering at the time — usually above the
// content — rather than in place of the shortcode.
return '';
}
add_shortcode( 'my_shortcode_button', 'wp_skills_my_shortcode_button_shortcode' );