回显循环外附件中的固定链接?

时间:2012-01-30 作者:Jezthomp

我有一些代码显示一个附在帖子上的图像,一个li列表中的图像,可以很好地显示图像。

我需要的图像链接通过其主要的单一职位虽然,并尝试了下面的代码。

<?php
            $args = array(
               \'post_type\' =>  \'attachment\',
               \'numberposts\' =>  -1,
               \'post_status\' =>  null,
               \'post_parent\' =>  $post->ID
              );

              $attachments = get_posts( $args );
                 if ( $attachments ) {
                    foreach ( $attachments as $attachment ) {
                       echo \'<li>  <a href="<?php the_permalink() ?>" title="Permanent Link to<?php the_title_attribute(); ?>">\';
                       echo wp_get_attachment_image( $attachment->ID, \'full\' );
                       echo \'</a></li>\';
                      }
                 }
?>
遗憾的是,这不会将永久链接打印到链接中:(

有什么想法吗?

感谢您的关注。

1 个回复
最合适的回答,由SO网友:ungestaltbar 整理而成

杰兹,不耐烦的杰兹:)

<?php
        $args = array(
           \'post_type\' =>  \'attachment\',
           \'numberposts\' =>  -1,
           \'post_status\' =>  null,
           \'post_parent\' =>  $post->ID
          );

          $attachments = get_posts( $args );
             if ( $attachments ) {
                foreach ( $attachments as $attachment ) {
                   echo \'<li>  <a href="\'. get_permalink($attachment->ID) .\'" title="Permanent Link to<?php the_title_attribute(); ?>">\';
                   echo wp_get_attachment_image( $attachment->ID, \'full\' );
                   echo \'</a></li>\';
                  }
             }
?>
试过了,对我有用。

结束

相关推荐

Attachments without images

我正在使用Attachments 插件,但我相信这个问题适用于常规媒体库。我想做的是有一个“附件”(元数据、标题、标题),但没有与之关联的图像。原因是,我想将附件视为“项目项”,可以是图像或文本块。这可能吗?