更改wordpress特色图片的路径

时间:2015-06-18 06:39:15

标签: wordpress

我正在尝试更改wp_get_attachment_url(get_post_thumbnail_id)

获取的当前路径

现在我将uri视为http://localhost/velocity/wordpress/wp-content/themes/velocity/images/pic01.jpg。 但我想将uri更改为http://newhost/velocity/wordpress/wp-content/themes/velocity/images/pic01.jpg 任何想法?

1 个答案:

答案 0 :(得分:2)

您所指的图片不是附件图片......它是主题资产。

如果您在模板中正确包含此内容,则更改主机不会出现问题,并且URL会自动更新。以下是使用get_stylesheet_directory_uri()

在模板中包含src的示例
<img src="<?php echo get_stylesheet_directory_uri() . '/images/pic01.jpg'; ?>">