我正在使用氧气创建搜索结果页面。我对CSS和PHP编辑非常陌生。我只是第一次把一张图片放在右边。所以请原谅我的无知。
当帖子没有缩略图/特征图像集时,我想阻止缩略图占位符出现在搜索结果中。我知道获取图像的函数是<?php echo get_the_post_thumbnail_url(); ?>
但我不知道如何编写代码来说明如果帖子缩略图为false(?可能),那么就不显示缩略图。
有人能帮我吗?我将非常感激。
我复制了下面使用的代码,这是氧气编辑器的截图。
我正在氧气模板编辑器中使用此代码。
<div class=\'oxy-post\'>
<a class=\'oxy-post-image\' href=\'<?php the_permalink(); ?>\'>
<div class=\'oxy-post-image-fixed-ratio\' style=\'background-image: url(<?php echo get_the_post_thumbnail_url(); ?>);\'>
</div>
<!--
<div class=\'oxy-post-image-date-overlay\'>
<?php the_time(get_option(\'date_format\')); ?> <?php the_title(); ?>
</div>
-->
</a>
<a class=\'oxy-post-title\' href=\'<?php the_permalink(); ?>\'><?php the_title(); ?></a>
<div class=\'oxy-post-meta\'>
<!--
<div class=\'oxy-post-meta-author oxy-post-meta-item\'>
<?php the_author(); ?>
</div>
-->
<!--
<div class=\'oxy-post-meta-comments oxy-post-meta-item\'>
<a href=\'<?php comments_link(); ?>\'><?php comments_number(); ?></a>
</div>
-->
</div>
<div class=\'oxy-post-content\'>
<?php the_excerpt(); ?>
</div>
<!--
<a href=\'<?php the_permalink(); ?>\' class=\'oxy-read-more\'>Read More</a>
-->
</div>