gpt4 book ai didi

php - 如何使用 WP 中的任何 jQuery 缩放插件缩放附加图像?

转载 作者:搜寻专家 更新时间:2023-10-31 22:11:16 24 4
gpt4 key购买 nike

我的 WordPress 主题需要帮助。在我的文章中,我只使用附加的图像。所以我制作了一个产品 slider ,可以自动从附件加载图像到这个产品 slider 。要显示我使用的图像:

<?php echo wp_get_attachment_image($product_image->ID, array(350, 250)); ?>

但此函数还会创建一些显示图像的 div 元素。所以我不能像 jQuery 缩放插件所要求的那样只向图像添加一个 needfull 类。有谁能够帮我?我只想使用一些 these zoom plugins .

我没有多少名气,所以我不能在 pastebin 上发布链接。
这里是HTML+PHP

<div id="slides" class="grid_5">

<div class="slides_container grid_5">
<?php
$product_images = get_posts(
array(
'posts_per_page' => -1,
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_parent' => $post->ID,
'order' => 'ASC'
)
);

foreach($product_images as $product_image) :?>
<div>


<center>
<?php echo wp_get_attachment_image($product_image->ID, array(350, 250)); ?>
</center>
</div>
<?php
endforeach;
?>
</div>
<br>
<ul class="pagination grid_5">
<?php
reset($product_images);
foreach($product_images as $product_image) :?>
<li><a href="#"><?php echo wp_get_attachment_image($product_image->ID, array(50, 50)); ?></a></li>
<?php
endforeach;
?>
</ul>

并生成 HTML:http://pastebin.com/EZByPvYm

最佳答案

wp_get_attachment_image() 还有两个参数,第 4 个参数用于覆盖 wp_get_attachment_image() 生成的 HTML 标签的属性,使用下面的代码。

<?php echo wp_get_attachment_image($product_image->ID, array(350, 250), false, array('class' => 'YOUR-DESIRED-CLASSNAME')); ?>

关于php - 如何使用 WP 中的任何 jQuery 缩放插件缩放附加图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12711931/

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