从我的functions.php死亡的Wordpress白色屏幕

时间:2014-11-24 08:53:48

标签: wordpress function passwords

我正在从头开始创建一个wordpress主题,并在我的wordpress functions.php文件中使用以下内容来设置受保护的帖子样式。

代码,取自此处 - tutsplus

然而,每当我尝试登录后端或更新帖子时,代码都会显示白屏。关于我在这里可能缺少的任何建议将不胜感激。

    <?php
add_filter( 'the_password_form', 'custom_password_form' );
function custom_password_form() {
    global $post;
    $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID );
    $o = '<div id="protected">
        <form class="protected-post-form" action="' . get_option('siteurl') . '/wp-login.php?action=postpass" method="post">

    <div class="padlock"></div>
    ' . __( "You'll need a password to get in here" ) . '
    <label class="pass-label" for="' . $label . '">' . __( "PASSWORD:" ) . ' </label><input class="post_password" name="post_password" id="' . $label . '" type="password" placeholder="Password"/><input type="submit" name="Submit" class="button" value="' . esc_attr__( "Submit" ) . '" />
    </form></div>
    ';
    return $o;
}
?>

编辑 - 删除主题并玩游戏后,错误肯定在这个.functions.php文件中,我只是不确定在哪里

1 个答案:

答案 0 :(得分:0)

确保在从functions.php打开之前没有空行。