Advertisement
afsarwebdev

Custom background image

Nov 24th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. //Custom background image dynamic
  2.  
  3. // 1) in section or div for the html part need the following php code
  4.  
  5. style="background-image: url(<?php get_background_image(); ?>)"
  6.  
  7. //2) And functions.php
  8. add_theme_support( 'custom-background', array(
  9. 'default-image' => get_template_directory_uri() . '/images/header.jpg',
  10. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement