• I’m running my blog through bluehost with the thesis theme.

    I just activated a “related post” plugin and logged out shortly thereafter.

    However, when I try to get back to the wp-admin screen for my site, but all I get is a white screen with this result instead of a login screen.

    Fatal error: Call to undefined function is_site_admin() in /home/plantin4/public_html/wp-content/plugins/wordpress-related-posts/related-posts.php on line 81

    Therefore, I’m not sure how to access my blog at the moment!!!

    help!!!

    Any advice would be appreciated.

    Thanks,
    Ryan

Viewing 1 replies (of 1 total)
  • Hi Plantingdollars.

    The function is_site_admin() was dropped from core hence the error. The file is calling a non-existent function. Try replacing it with is_admin()

    Open related-posts.php and at Line 81 look for the following…

    if ( !function_exists('get_site_option') || is_site_admin() )

    Change it so that it reads…

    if ( !function_exists('get_site_option') || is_admin() )

Viewing 1 replies (of 1 total)

The topic ‘Trouble logging in – help!’ is closed to new replies.