gpt4 book ai didi

jquery - (Wordpress) 图像到 Work 的附件但未出现在 slider 中

转载 作者:行者123 更新时间:2023-12-01 07:11:05 25 4
gpt4 key购买 nike

简单总结一下:这就是 slider 的样子 -> http://luiszuno.com/themes/wp-dokedoke/work/porttitor/ (原始演示)当我将媒体中的图像添加到作品中时,它会转到内容而不是像这样的 slider -> http://netsurf.ir/work/project-2 (网站为波斯语)工作 slider :

<?php
/*
*
* Retrieve and displays all images
*
*/

$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID,
'post_mime_type' => 'image',
'order' => 'ASC'
);
$attachments = get_posts($args);
?>

<div id="project-gallery"><!-- swipper -->
<div class="gallery-container">
<div class="swiper-container clearfix">
<div class="swiper-wrapper clearfix">


<!-- Images -->
<?php if ($attachments) : ?>
<?php
foreach ( $attachments as $attachment ) :
$this_image = aq_resize($attachment->guid, 672);
?>
<div class="swiper-slide"> <img src="<?php echo $this_image ?>" alt="<?php echo $attachment->guid ?>"> </div>

<?php endforeach ?>
<?php endif ?>
<!-- ENDS images -->


</div>

</div>
</div>
<!-- ENDS swipper -->

我的工作文本:

<a href="somewhere/03.jpg(cant post more than 2links)"><img class="alignnone size-full wp-image-41" src="http://netsurf.ir/wp-content/uploads/03.jpg" alt="03" width="672" height="400" /></a> <img class="alignnone size-full wp-image-42" src="somewhere/04.jpg" alt="04" width="672" height="400" />

最佳答案

您可以发布您尝试添加此 slider 的整个文件的代码吗?看起来您的代码是正确的,但重要的是您将此代码放在哪里。

关于jquery - (Wordpress) 图像到 Work 的附件但未出现在 slider 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26820669/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com