Skip to content

Instantly share code, notes, and snippets.

@bizzthemes
Last active January 2, 2016 20:49
Show Gist options
  • Save bizzthemes/8358990 to your computer and use it in GitHub Desktop.
Save bizzthemes/8358990 to your computer and use it in GitHub Desktop.
Formatting allowed tags filter
<?php
//* Do NOT include the opening php tag, only copy the code below
array(
'p' => array( 'align' => array(), 'class' => array(), 'style' => array() ),
'span' => array( 'align' => array(), 'class' => array(), 'style' => array() ),
'div' => array( 'align' => array(), 'class' => array(), 'style' => array() ),
'a' => array( 'href' => array(), 'title' => array() ),
'b' => array(),
'strong' => array(),
'i' => array(),
'em' => array(),
'blockquote' => array(),
'br' => array()
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment