Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $allowed_html = array(
  2. 'div' => array(
  3. 'title' => array(),
  4. 'class' => array(),
  5. 'style' => array()
  6. )
  7. );
  8.  
  9. $str = '<div title='Click to continue' style='display:table'>This is a button</div>';
  10. wp_kses($str, $allowed_html );
  11.  
  12. add_filter( 'safe_style_css', function( $styles ) {
  13. $styles[] = 'display';
  14. return $styles;
  15. } );
  16.  
  17. $html = wp_kses_allowed_html( 'post' );
  18. $html['style'] = array();
  19. echo wp_kses( $content, $html );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement