链接到自定义帖子类型元的问题

时间:2013-11-18 15:42:17

标签: php wordpress-theming metadata wordpress

我有自定义帖子类型和URL的文本输入元数据。到目前为止,事情对我来说很好,除非我想在按钮中回显元数据。 这就是我所拥有的

$meta = get_post_custom($post->ID);
echo '<button type="button" class="> <a href="'.<?php echo $meta['source'][0];?>.'" target="_blank"> Read More @ News Source</a></button>';

我做错了什么?

1 个答案:

答案 0 :(得分:3)

删除<?php echo?>。它不需要作为你的串联字符串

$meta = get_post_custom($post->ID);
echo '<button type="button"> <a href="'.$meta['source'][0].'" target="_blank"> Read More @ News Source</a></button>';

也不确定之前class="是什么..

更新

使用<button>标记环绕链接会使链接无法点击,因为在此上下文中不应使用按钮标记。

将其更改为span而不是

$meta = get_post_custom($post->ID);
echo '<span type="button"> <a href="'.$meta['source'][0].'" target="_blank"> Read More @ News Source</a></span>';