WordPress页面模板中的图像

时间:2012-03-20 21:47:42

标签: wordpress wordpress-theming

有没有一种方法可以将图像放入主题模板中,以便在WordPress中轻松交换?我一直在尝试使用wp_get_attachment_image_src( $id, $size )但是我需要以某种方式保持从旧图片到新图片的相同ID。

此外,wp_get_attachment_image_src( $id, $size )正在拾取我的图片的自动裁剪缩略图版本,而不是原始版本。如果你能告诉我为什么会这样,那么就给你奖金!

1 个答案:

答案 0 :(得分:1)

您应该在主题的主文件夹中创建/ images文件夹,然后在模板文件中引用图像,如下所示:

//inside the template-file.php
<img src="<?php bloginfo('template_url'); ?>/images/your_image.jpg " />

主题文件的结构应该是这样的:

/your_theme_folder
    /images
        your_image.jpg
    template-file.php