Hey,
Im trying to use this code but it isnt working, im running WP 3.0.1.
It doesnt give me any output at all.
Thanks in advance,
marten
solved it by myself by reading the codex one more time
<?php $loop = new WP_Query( array( 'Taxonomy' => 'under-tax/category' ) );
Nevermind, i was to lazy to try one thing that worked.
If any1 runs into this problem use the following code
<?php global $post; ?>
<?php
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 5600,1000 ), false, '' );
?>
<div style="background: url(<?php echo $src[0]; ?> ) !important;">text </div>