-
-
Save alpha1/502dd7b6e8f8138937a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$css = "style=''"; | |
if ( has_post_thumbnail( get_the_ID ) ) : | |
$size = 'large'; // choose size of image to be used | |
$thumb_id = get_post_thumbnail_id(); | |
$thumb_object = wp_get_attachment_image_src($thumb_id, $size, true); | |
$thumb_url = $thumb_object[0]; | |
$css = "background-image:url('$thumb_url'); background-size:cover; background-position:top-center no-repeat;" | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment