我需要说明发布的帖子数量是否只有一个,get_footer(); ...但是..如果发布的帖子数量大于1,则get_footer('single')..
这是我目前的代码似乎不起作用:
<?php
$count_posts = wp_count_posts();
if($count_posts = 1){
get_footer();
} else if($count_posts > 1) {
get_footer('single');
}
?>
答案 0 :(得分:1)
=
执行分配,因此:
if($count_posts = 1){
...与此基本相同:
$count_posts = 1;
if($count_posts) {
您很可能想要进行比较而不是作业:
if($count_posts == 1){