Elseif 在 WordPress 中有三个输出(第三个没有显示)


Elseif in WordPress with three outputs (third one doesn't show up)

无法让它工作,一直在尝试不同的事情 - 但它只显示两个。最后一个(其他)没有出现在网站上。

谁能看到我做错了什么?

谢谢!:)

<?php if ( get_post_meta($post->ID, 'ends', true) ) { ?>
<?php echo get_post_meta($post->ID, 'ends', true); ?>
<?php } elseif ( shortcode_exists( 'postexpirator' ) ) { ?>
<?php echo do_shortcode('[postexpirator]'); ?>
<?php } else { ?>
Continues
<?php } ?>

我认为它被挂

断了:
<?php } elseif ( shortcode_exists( 'postexpirator' ) ) { ?>

并检查一般是否存在短代码?我不太确定您如何进行此设置,因为它是一个短代码,但我认为这可能就是这样。