wordpress网站的默认缩略图


default thumbnail for wordpress site

我正在尝试修改我的自定义wp主题并添加相关的帖子块。我想为没有它的帖子添加默认缩略图。下面的代码工作得很好,但我不能存档如何添加默认img。

$args = array( 'numberposts' => '4','post__not_in' => array($post->ID));
$recent_posts = wp_get_recent_posts($args);
foreach( $recent_posts as $recent ) {
    if($recent['post_status']=="publish") {
      if ( has_post_thumbnail($recent["ID"])) {
        echo '<div><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   get_the_post_thumbnail($recent["ID"], 'thumbnail'). $recent["post_title"].'</a></div> ';
        } else {
            echo '<div><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a></div>';
        }
    }
} 

为了打印默认缩略图,如果没有找到帖子的特色图像,您必须打印您在图像文件夹中的默认图像。

<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else { ?>
<img src="<?php bloginfo('template_directory'); ?>/images/default-thumb-img.png"
alt="<?php the_title(); ?>" />
<?php } ?>

上面的代码是做什么的?

它检查帖子是否有缩略图,如果没有,它会根据您的要求分配default-thumb- image .png(将其更改为您的图像名称)。

我的解决方案是硬编码绝对链接到默认缩略图

$args = array( 'numberposts' => '4','post__not_in' => array($post->ID));
                    $recent_posts = wp_get_recent_posts($args);
                    foreach( $recent_posts as $recent ){
                        if($recent['post_status']=="publish") {
                            if ( has_post_thumbnail($recent["ID"])) {
                                echo '<div class="col-md-3 col-lg-3"><div class="recent-post-holder"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   get_the_post_thumbnail($recent["ID"], 'thumbnail'). $recent["post_title"].'</a></div></div> ';
                            } else {
                                echo '<div class="col-md-3 col-lg-3"><div class="recent-post-holder"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   "<img src='/*add link here*/'>". $recent["post_title"].'</a></div></div>';
                            }
                        }
                    }