我需要循环来显示我通过网址链接的帖子的附加图像等等。
如何将其实施到我的wordpress?
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
</div>
<div class="navigation">
<div class="next-posts"><?php next_posts_link(); ?></div>
<div class="prev-posts"><?php previous_posts_link(); ?></div>
</div>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h1>Not Found</h1>
</div>
答案 0 :(得分:0)
$args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_status' =>'any', 'post_parent' => $post->ID );
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo apply_filters( 'the_title' , $attachment->post_title );
the_attachment_link( $attachment->ID , false );
}
}
使用此功能,您可以显示帖子的所有附件。
$post->ID
是帖子的ID,在您的当前循环中使用此内容。
您可能会发现有用的其他功能..
<强> 1。 Wp Get Attachment Image Source 强>
<强> 2。 Wp Get Attachment Link 强>