我正在为wordpress 4.1.1创建自定义主题。
我在向帖子添加媒体(图像)时遇到问题。
当我通过媒体库选择图像时,我会选择它,但我只能选择将其插入帖子。
我知道可以使用“wp\\u get\\u attachment\\u image\\u src”功能检索图像源,所以我想问一下,是否有办法链接图像而不发布它?
以下是我想做的:
<?php while(have_posts()) : the_post;?>
<div class="oeuvre">
<img class="img-oeuvre" src="<?php //should be something dynamic like the_image() ;?>" alt=""/>
<div class="infos-oeuvre">
<p><?php the_title(); ?></p>
<p><?php the_content() ; ?></p>
<a class="btn-oeuvre "ref="http://www.thisiscolossal.com/2014/05/photographer-laurent-lavender-plays-with-the-moon/" target="_blank">plus d\'infos</a>
</div>
</div>
<?php endwhile; ?>
我发帖不是为了得到解决方案(但如果你想XD,请随意给出),但我在问自己是否有正确的方法来解决这个问题。
如果没有,欢迎提供任何建议、链接或示例!