在wordpress中添加特色图像时添加的URL

时间:2014-01-17 06:33:45

标签: wordpress

我正在使用wordpress最新版本。 与wordrpess一样,我们可以在帖子中添加特色图片时添加URL,因为有文字字段,如标题,标题,替代文字,描述,URL等。 我添加了http://example.com/abc-news之类的链接 我可以在博文中显示精选图片,但我希望该链接为

<a href="URL" title="">{featured-image}</a>

因此,如果有人点击特色图片,他/她将转到该链接。

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:2)

如果您使用默认主题和最新版本的WordPress,则可以在2014主题目录中编辑 content.php

您需要使用指向您网址的链接代码包裹<?php twentyfourteen_post_thumbnail(); ?>

此代码应位于content.php。

的第13行
<?php twentyfourteen_post_thumbnail(); ?>

要链接到当前的博文,您可以添加以下代码:

<a href="' . esc_url( get_permalink() ) . '"><?php twentyfourteen_post_thumbnail(); ?></a>

如果您使用的是与默认主题不同的主题,请在主题中打开包含The Loop的文件,搜索the_post_thumbnail或类似命名的函数,然后按上述方式更改代码。

确切答案将根据主题而有所不同,但98%的修复时间应与上述类似。希望这会有所帮助。

修改:以下是更多信息:http://codex.wordpress.org/Function_Reference/the_post_thumbnail#Post_Thumbnail_Linking_to_the_Post_Permalink

答案 1 :(得分:1)

感谢您的及时回复。 根据主题,你是对的98%。 主题是使用meta_value为精选图片添加自定义网址。 所以,我需要通过get_post_meta获取该网址 I've got from here. 我现在很好。 : - )

由于