Color Me
Allows the user to change the colour of the text.
// Add Shortcode function text_colour( $atts , $content = null ) { // Attributes extract( shortcode_atts( array( 'color' => '', ), $atts ) ); // Code return '<div class="color-me">' . do_shortcode($content) . '</div> <style type="text/css"> .color-me{ color:' . $color . '; } </style>'; } add_shortcode( 'text_colour', 'text_colour' );