添加图像库的链接

时间:2019-10-30 18:28:40

标签: php wordpress

我需要将一些画廊图像链接到不同的外部网站。经过一番研究,我无法找到不使用插件的解决方案。不使用插件就可以在wordpress中实现吗?我无法为此项目安装插件,因此任何建议将不胜感激。

这是我的代码:

$args = array(
'post_type' => 'post',
'name' => 'partners'
);
$logo_img = new WP_Query( $args );
?>
<div class="container-fluid" id="">
  <div class="row" style="margin-top:1em;margin-bottom:1em;">
<?php if( $logo_img->have_posts() ): while( $logo_img->have_posts() ): $logo_img->the_post();
$logo_gallery = get_post_gallery_images( $post->ID );
if( $logo_gallery ): ?>
  <div class="col-sm-12 col-md-12 col-lg-12 text-center">
<?php foreach($logo_gallery as $logo ): ?>
    <img class="img-fluid" src="<?php echo $logo; ?>" alt="" width="60" id="partner-logo" style="margin:0 .5em 0 .5em;"/>
<?php endforeach; ?>
  </div>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; wp_reset_postdata(); ?>
  </div>
</div>

1 个答案:

答案 0 :(得分:0)

根据我们正在谈论的图像数量,如果这些图像被命名,则可以使用一些逻辑基于名称创建URL,如果未命名并且数量不多,则可以重命名它们。

这是一个例子;

<?php
// If there is a matching string, set a specific URL
if (preg_match('/site1/',$logo)) { $set = "yes"; $link = "https://website1.com"; }
if (preg_match('/site2/',$logo)) { $set = "yes"; $link = "https://website2.com"; }
if (preg_match('/site3/',$logo)) { $set = "yes"; $link = "https://website3.com"; }

// If there is no matching string, set a default URL
if ($set !== "yes") { $link = "https://default.com"; }

// Now encase your image in a URL
echo "<a href='$link'>
<img class='img-fluid' src='$logo' alt='' width='60' id='partner-logo' style='margin:0 .5em 0 .5em;'/>
</a>";
?>

顺便说一句,id ='partner-logo'-该ID应该是唯一的。