patwreck
Forum Replies Created
-
I got it updated finally , but still have a white screen for admin panel.
been doing this with no success. i am running out of options i think.
thats pretty vague… change it to what?
i already tried that and it didnt work.
i tried the plugins folder… no change..
how do i get my theme changed via ftp?
upon further review of deprecated.php line 30101 looks like this:
3101 $theme = new WP_Theme( basename( dirname( $theme_file ) ), dirname( dirname( $theme_file ) ) );
3102
3103 $theme_data = array(
3104 ‘Name’ => $theme->get(‘Name’),
3105 ‘URI’ => $theme->display(‘ThemeURI’, true, false),
3106 ‘Description’ => $theme->display(‘Description’, true, false),
3107 ‘Author’ => $theme->display(‘Author’, true, false),
3108 ‘AuthorURI’ => $theme->display(‘AuthorURI’, true, false),
3109 ‘Version’ => $theme->get(‘Version’),
3110 ‘Template’ => $theme->get(‘Template’),
3111 ‘Status’ => $theme->get(‘Status’),
3112 ‘Tags’ => $theme->get(‘Tags’),
3113 ‘Title’ => $theme->get(‘Name’),
3114 ‘AuthorName’ => $theme->get(‘Author’),
3115 );
3116
3117 foreach ( apply_filters( ‘extra_theme_headers’, array() ) as $extra_header ) {
3118 if ( ! isset( $theme_data[ $extra_header ] ) )
3119 $theme_data[ $extra_header ] = $theme->get( $extra_header );
3120 }
3121
3122 return $theme_data;
3123 }
3124
3125 /**