Advertisement
srikat

Untitled

May 6th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // if the post has a featured image, send it to Backstretch else use a default one
  2. if ( has_post_thumbnail() ) {
  3. wp_localize_script( 'backstretch-init', 'BackStretchImg', array( 'src' => wp_get_attachment_url( get_post_thumbnail_id() ) ) );
  4. }
  5. else {
  6. wp_localize_script( 'backstretch-init', 'BackStretchImg', array( 'src' => 'http://genesis.dev/wp-content/themes/genesis-sample/images/picjumbo.com_IMG_6533-1600.jpg' ) );
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement