yo tengo un problema con mi tema no puedo poner el slide que sale en el demo este es el demo https://www.mojo-themes.com/item/vintage/demo/ segun yo en el codigo viene pero no estoy segura y no se como ponerlo ya instale el plugin hice el slide pero no se en donde poner el codigo
<?php
/*
*
* Retrieve and displays all images
* in the gallery from this work post as a slider
*
*/
$args = array(
‘post_type’ => ‘attachment’,
‘numberposts’ => -1,
‘post_status’ => null,
‘post_parent’ => $post->ID,
‘post_mime_type’ => ‘image’
);
$attachments = get_posts($args);
if ($attachments) :
?>
<!– SLIDER –>
<div class=»slider-wrapper theme-vintage-portfolio»>
<div class=»ribbon»></div>[nivoslider slug=»336″]
<div id=»slider-project» class=»nivoSlider»>
<?php
foreach ( $attachments as $attachment ) :
$img_attributes = wp_get_attachment_image_src( $attachment->ID, ‘full’);
$this_image = ansimuz_build_image($img_attributes[0], 860);
?>
<img src=»<?php echo $this_image ?>» alt=»» />
<?php endforeach?>
</div>
</div>
<?php endif?>