如何将“文件url”重定向到“post url”,即在attachment.php中

时间:2011-08-08 作者:Everton Blair

我刚刚开始使用附件。我的网站上的php模板。我想做的是将使用“文件url”的帖子中的所有图像重定向到“帖子url”和我的新附件。php模板。

这可能吗?

提前感谢您的帮助。

电子商务

2 个回复
SO网友:Chip Bennett

使用链接到图像文件wp_get_attachment_link( $id, $size, $permalink, $icon, $text ):

  • $id 是附件ID,如果使用attachment.php, 只会是$post->ID
  • $size 是图像大小,例如。full, large, medium, thumbnail
  • $permalink determines whether a link to the file or post is returned. Use false (which is the default) to link to the file
  • $icon 指mime类型图标。离开false, 这是默认值$text 显示文本链接。离开false, 这是默认值

SO网友:Jeremy Jared

Take a look at the solution on the WordPress Support Forum:http://wordpress.org/support/topic/redirect-attachment-page-to-post-page-how-to

结束

相关推荐

where is images/image.jpg?

我被迫在站点上使用SOAP服务,对于一些UI元素,它调用的是我必须放置到位的图像。我无法将它们指向主题文件夹,因为我无法控制HTML,而且我不愿意使用javascript。代码指向<img src=\"images/image.jpg\" >, 我尝试将一个图像文件夹添加到WP安装的根目录中,但没有成功。所以我的问题是,我应该把图像放在哪里,以便HTML可以找到它?