将社交媒体图标框转换为链接

时间:2014-05-16 18:41:45

标签: wordpress wordpress-plugin

我试图用我的社交媒体框包含指向相应链接的链接,这是一个从我的WordPress事件插件调用的自定义字段。如果您访问任何活动页面(例如http://familyoffestivals.com/event/hangout-music-festival-2014/)并滚动到"热门链接"部分,你可以看到我所指的社交媒体框。

"热门链接"图标很棒。

<div class=”instagram-fourth”>
<p style=”float: center;”><span style=”color: #3f729b;”><i class=”fa fa-instagram fa-5x”></i></span></p>
<?php echo tribe_get_custom_field(‘Instagram’); ?>
</div>

我问过活动开发者(https://tri.be/support/forums/topic/make-a-link-using-tribe_get_custom_fieldcustom-field-here/)并且他们没有多大帮助。

如果你能提供帮助,请告诉我。

1 个答案:

答案 0 :(得分:0)

那么Instagram的领域是否为该活动或活动主持人提供了Instagram网址?

你可以使用这样的东西吗?

<a href="<?php echo tribe_get_custom_field('Instagram'); ?>" target="_blank"><i class="fa fa-instagram fa-5x"></i></a>

我假设我的班级里面有你的Instagram图标。

或者自定义字段是否包含图标和链接?

如果是这样,那么你可能不得不将其分解为Instagram_Logo和Instagram_URL然后做这样的事情。

<a href="<?php echo tribe_get_custom_field('Instagram_URL'); ?>" target="_blank"><?php echo tribe_get_custom_field('Instagram_Icon') ;?></a>