自定义主题-如何在不发布的情况下链接图像

时间:2015-02-21 作者:skytorner

我正在为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,请随意给出),但我在问自己是否有正确的方法来解决这个问题。

如果没有,欢迎提供任何建议、链接或示例!

1 个回复
SO网友:EliasNS

默认情况下,图像属于only to one post. 实际上,该帖子是附件的父帖子(也就是帖子)。我认为TheDeadMedic的评论是一个很好的选择,因为它是WordPress的原生版本,但你只能将一篇文章与一幅特色图片链接起来。如果你想的话attach several files you can use the plugin WP Better Attachments (link).

结束

相关推荐

Images with excerpt function

我有一个很好的摘录功能,可以让我的段落保持得体。顺便说一句,效果很好。 function pietergoosen_custom_wp_trim_excerpt($text) { global $post; $raw_excerpt = $text; if ( \'\' == $text ) { $text = get_the_content(\'\'); $text = strip_shortcodes( $text ); &#x