Simple, efficient, and flexible raw html support via shortcodes.
This plugin allows you to insert raw HTML and Javascript into your post without any tampering by the fiendish WordPress paragraph and line break inserter. It is based on shortcodes and avoids expensive and fragile parsing of the post content based on regular expressions, unlike other plugins with similar functionality.
Using the pluginContent that should be passed through unchanged by WordPress should be contained in a [ml_raw_html] shortcode block. For example:
Regular post content here...
[ml_raw_html]
<script type="text/javascript">
function foo(bar) {
frobozz = 'a';
bat = bar;
}
</script>
[/ml_raw_html]
More post content...
Multiple raw blocks
If you have multiple ml_raw_html blocks on a page, there is a slight complication. Each block needs to have a different id attribute to allow the implementation to accurately select the correct block of text. For example:
Regular post content here...
[ml_raw_html id="1"]
<script type="text/javascript">
function foo(bar) {
frobozz = 'a';
bat = bar;
}
</script>
[/ml_raw_html]
More post content...
[ml_raw_html id="2"]
<script type="text/javascript">
function foo2(bar) {
return 5;
}
</script>
[/ml_raw_html]
The id values are arbitrary, so long as they are unique on the page.
The shortcode name "ml_raw_html" and the id attribute, if present, must be all lowercase, and there cannot be any extra whitespace inside the brackets.
Requires: 3.0 or higher
Compatible up to: 3.0.5
Last Updated: 2011-1-20
Downloads: 1,100
Got something to say? Need help?