PHP解析错误:语法错误,意外' endif' (T_ENDIF)

时间:2014-08-21 19:57:56

标签: php wordpress syntax-error

我想我会失明......

我真的在代码中找不到语法错误

<?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; ?>

我的错误在哪里?!

最好的问候

1 个答案:

答案 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; ?>