Hämta utvald bild från portfolio
-
Jag är inte så hemma på php så finns det någon här som kan hjälpa mig?
Med nedan kod loopar jag ut de senaste portfolio-posterna och titel och mitt custom fields med underrubrik visas, men länken till portfolio-posten och den utvalda bilden visas inte. Vad är det jag missar?
// Arguments $args = array( 'post_type' => 'portfolio', ); // The Query $the_query = new WP_Query( $args ); $featuredimage = get_the_post_thumbnail_url (get_the_ID(), 'full'); // The Loop if ( $the_query->have_posts() ) { echo "<div class='images-grid'>"; while ( $the_query->have_posts() ) { $the_query->the_post(); echo "<div>"; echo '<a href="'; echo the_field('link'); echo '">'; echo "<div class='case-image' style='background-image: url({$featuredimage})'>"; echo "<div class='case-row-top '>"; echo "<h4>".get_the_title()."</h4>"; echo "<h2>".get_field('underrubrik')."</h2>"; echo "</div>"; echo "</div>"; echo '</a>'; echo "</div>"; } echo "</div>"; /* Restore original Post Data */ wp_reset_postdata(); }
Visar 1 svar (av 1 totalt)
Visar 1 svar (av 1 totalt)
- Ämnet ”Hämta utvald bild från portfolio” är stängt för nya svar.