我正在使用 Word press 的插件来设置 2 张精选图片以供发布。我需要做一个 if 语句来检查是否设置了第二个特色图像。如果已设置,它将显示代码场景 1。但如果未设置,并且如果未设置,则我需要显示代码场景 2。
这是我需要检查的功能代码,这将显示第二张图像。
<?php kd_mfi_the_featured_image( 'featured-image-2', 'post' ); ?>
我正在使用 Word press 的插件来设置 2 张精选图片以供发布。我需要做一个 if 语句来检查是否设置了第二个特色图像。如果已设置,它将显示代码场景 1。但如果未设置,并且如果未设置,则我需要显示代码场景 2。
这是我需要检查的功能代码,这将显示第二张图像。
<?php kd_mfi_the_featured_image( 'featured-image-2', 'post' ); ?>
您应该使用 kd_mfi_get_the_featured_image:
<?php if(class_exists( 'kdMultipleFeaturedImages') && kd_mfi_get_the_featured_image('featured-image-2','post')):
?>
<!-- If the image exists... Your code here, either HTML or PHP -->
<?php else: ?>
<!-- If the image not exists... Your code here, either HTML or PHP -->
<?php endif; ?>