The following shortcode is a handy function that will allow you to add text styling using a BBcode (shortcode) style of syntax. You'll easily be able to add CSS styles within your post. Example: [format style="font-size:1.5em;color:#f00;"]Important![/format]
.
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
1
<?php
2
/*
3
Add Style to Text with WordPress Shortcode
4
http://www.beliefmedia.com/code/wp-snippets/text-style
5
*/
6
7
function beliefmedia_style_text($atts, $content = null) {
8
9
'style' => ''
10
), $atts));
11
12
return '<span' . ($style == '' ? '' : " style=\"$style\"") . ">$content</span>";
13
}
14
If you require shortcode to work in a sidebar widget, you'll have to enable the functionality with a filter. If you're using our custom functions plugin, you'll have that feature enabled by default.