Advertisement
Abubakar1309

cladhrcf

Nov 12th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function azc_bbcode_div_color($atts, $content = null) {
  2. if (empty($atts)){
  3. $bg = 'black';
  4. }else{
  5. $attribs = implode('',$atts);
  6. $bg = str_replace("'", '', str_replace('"', '', substr ( $attribs, 1)));
  7. if(ctype_xdigit($bg)) {
  8. $bg = $bg;
  9. }
  10. }
  11. return "<div class='".$bg."'>".do_shortcode($content)."</div>";
  12. }
  13. add_shortcode( 'Class', 'azc_bbcode_div_color' );
  14. add_shortcode( 'CLASS', 'azc_bbcode_div_color' );
  15. add_shortcode( 'class', 'azc_bbcode_div_color' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement