Rebecka Lagercrantz je švedska ilustratorka mlajše generacije. Ilustracije Malega črnega kuža so mojstrsko enakovredne zgodbi že uveljavljene pisateljice. S tem delo se je ilustratork zavihtela med najbolj spoštovane in priljubljene švedske ilustratorje današnjega časa.
Povezane knjige:
$connected = new WP_Query( array(
'relationship' => array(
'id' => 'ilustratorji_to_products',
'from' => get_the_ID(), // You can pass object ID or full object
),
'nopaging' => true,
) );
while ( $connected->have_posts() ) : $connected->the_post();
$permalink = get_permalink();
if ( has_post_thumbnail() ) { // Checks if the product has a main photo (featured image)
$photo = get_the_post_thumbnail_url( get_the_ID(), 'small' ); // if so, it will fetch a medium-large version of the image
}
?>
endwhile;
wp_reset_postdata();
?>
wp_link_pages( array( 'before' => '' . esc_html__( 'Pages:', 'Divi' ), 'after' => '
' ) );
?>