我有一些代码显示一个附在帖子上的图像,一个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>\';
}
}
?>
遗憾的是,这不会将永久链接打印到链接中:(
有什么想法吗?
感谢您的关注。
最合适的回答,由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>\';
}
}
?>
试过了,对我有用。