我想我会失明......
我真的在代码中找不到语法错误
<?php if (!is_page(array('865'))); ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<?php endif; ?>
我的错误在哪里?!
最好的问候
答案 0 :(得分:3)
必须有冒号而不是分号......
<?php if (!is_page(array('865'))): ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<?php endif; ?>