Wie wird man die Features Images in der Carousel Gallery (jQuery) los?
Einfach nur die folgende Zeile im File carousel-gallery-jquery.php verändern:
Alt:
[php]$attachments = get_children( array(‘post_parent’ => $id, ‘post_status’ => ‘inherit’, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => $order, ‘orderby’ => $orderby );[/php]
Neu (der exclude Parameter am Ende ist neu):
[php] $attachments = get_children( array(‘post_parent’ => $id, ‘post_status’ => ‘inherit’, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => $order, ‘orderby’ => $orderby, ‘exclude’ => get_post_thumbnail_id()) );[/php]