我想使用此函数,但我不知道正确的最佳方法是什么。。
代码:
<li id="post-<?php the_ID(); ?>" <?php post_class(get_the_content() == "" ? "no-content" : ""); ?> <?php post_class(has_post_thumbnail() ? "" : "no-image"); ?>>
有两个if语句。当前仅第一个工作,第二个不工作,但如果我删除第一个
<?php post_class(get_the_content() == "" ? "no-content" : ""); ?>
第二次工作。如何将这些行组合起来?