I\'m trying to create a shortcode to add a CSS style attribute to a page. I added the following code to my theme\'s functions.php.
function add_style( $atts, $co
The solution I found to my problem was to replace remove "" using str_replace();
""
str_replace();
function add_style( $atts, $content = null ) { $pure_content = str_replace("","",$content); return ''; } add_shortcode( 'style', 'add_style' );