srikat

Untitled

Aug 26th, 2016
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. function sk_customizer_css() {
  2. ?>
  3. <style type="text/css">
  4. <?php
  5. if ( get_theme_mod( 'sk_home_top_background_image' ) ) {
  6. $home_top_background_image_url = get_theme_mod( 'sk_home_top_background_image' );
  7. } else {
  8. $home_top_background_image_url = get_stylesheet_directory_uri() . '/images/minimography_005_orig.jpg';
  9. }
  10.  
  11. // if ( 0 < count( strlen( ( $home_top_background_image_url = get_theme_mod( 'sk_home_top_background_image', sprintf( '%s/images/minimography_005_orig.jpg', get_stylesheet_directory_uri() ) ) ) ) ) ) { ?>
  12. .home-top {
  13. background-image: url( <?php echo $home_top_background_image_url; ?> );
  14. }
  15. <?php // } // end if ?>
  16. </style>
  17. <?php
  18. }
Advertisement
Add Comment
Please, Sign In to add comment