特色图片和帖子中的图片

时间:2015-11-19 作者:Sao Tith

关于特色图片,我有点进退两难。这是我的情况。我目前正在使用绑定到帖子的特色图像显示在主页上,也可以显示在单个帖子页面上。

然而,我遇到了一个问题,我使用了一个特色图像,但帖子也有一个图像,在这种情况下,我不想在帖子页面上显示特色图像,而只想显示帖子中的图像。

我仍然需要主页的功能图像(因为它是一个不同的图像,然后后页图像)。

这有意义吗?

底线-所有帖子都需要在主页中使用功能图像功能图像,如果帖子有图像,则在单个帖子页面上不显示功能图像

有什么帮助吗?

1 个回复
SO网友:dynamicad

在您试图拉入第一幅图像的页面模板上(如果是帖子本身,那么是single.php),您可以使用以下代码而不是\\u post\\u缩略图

function echo_first_image( $postID ) {
$args = array(
    \'numberposts\' => 1,
    \'order\' => \'ASC\',
    \'post_mime_type\' => \'image\',
    \'post_parent\' => $postID,
    \'post_status\' => null,
    \'post_type\' => \'attachment\',
);

$attachments = get_children( $args );

if ( $attachments ) {
    foreach ( $attachments as $attachment ) {
        $image_attributes = wp_get_attachment_image_src( $attachment->ID, \'thumbnail\' )  ? wp_get_attachment_image_src( $attachment->ID, \'thumbnail\' ) : wp_get_attachment_image_src( $attachment->ID, \'full\' );

        echo \'<img src="\' . wp_get_attachment_thumb_url( $attachment->ID ) . \'" class="current">\';
    }
}
}

相关推荐

Remove <p></p> after images

我对<p></p> 出现在my之后的标记<img....>. 以下是我在本地主机上查看生成的页面时显示的内容。。。<img src=\"/wp-content/themes/wunderful/assets/images/feedback-danielle.png\" alt=\"Danielle Johnson Deal Town FC Treasurer\"> <p></p> 请注意随机生成的<p>&