Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function asuna_customizer_css_widget() {
  2. $widget_color = get_theme_mod('widget_color');
  3.  
  4. ?>
  5. <style type="text/css">
  6. #secondary {
  7. background-color: <?php echo $widget_color; ?>
  8. }
  9. </style>
  10. <?php
  11. }
  12. add_action( 'wp_body', 'asuna_customizer_css_widget' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement