Why does this code make my screen go blank in admi

2019-08-03 00:30发布

When publishing content or changing any settings in the admin, the screen goes blank, I found that it's due to this code in my functions.php file. Is there something wrong with it?

<?php
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
    'name'=> 'Footer',
    'id' => 'footer',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<div class="title">',
    'after_title' => '</div>'
));
register_sidebar(array(
    'name'=> 'Right-Sidebar',
    'id' => 'rightsidebar',
    'before_widget' => '<div class="white-bar">',
    'after_widget' => '</div>',
    'before_title' => '<div class="title">',
    'after_title' => '</div>'
));
register_sidebar(array(
    'name'=> 'Ads',
    'id' => 'ads',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<div class="title">',
    'after_title' => '</div>'
));
}
?>

Fairly new to this, so details would be excellent!

3条回答
啃猪蹄的小仙女
2楼-- · 2019-08-03 00:45

I know this may not be the answer, but I have run into this problem before, and on several occasions it was some extra whitespace at the top or bottom of the functions.php file.

Maybe check that if nothing else works.

It could be a number of things, but I always check the easiest thing to fix first!

查看更多
甜甜的少女心
3楼-- · 2019-08-03 01:02

Un-needed spacing in the functions.php file was causing this.

查看更多
啃猪蹄的小仙女
4楼-- · 2019-08-03 01:03

In my WP code, I don't include brackets {} around the if statement. My functional code looks like:

if ( function_exists('register_sidebar') )
register_sidebar(array('name'=>'sidebar1',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<h2>',
    'after_title' => '</h2>',
));
register_sidebar(array('name'=>'sidebar2',
    'before_widget' => '',
    'after_widget' => '',
    'before_title' => '<h2>',
    'after_title' => '</h2>',
));
查看更多
登录 后发表回答