自动将图像添加到媒体库

时间:2012-04-21 17:00:18

标签: image wordpress function

我正在创建一个wordpress主题,我有5张我想用它分发的图片。是否有可能当用户加载我的主题时,我的5张图像会自动放入媒体库?

1 个答案:

答案 0 :(得分:0)

将图像放在主题文件夹中。然后像这样检索它们:

<img src="<?php bloginfo('stylesheet_directory'); ?>/images/img1.jpg" />
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/img2.jpg" />
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/img3.jpg" />
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/img4.jpg" />
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/img5.jpg" />