'.__('You do not have sufficient permissions to edit templates for this site.').'

'); $title = __("Edit Themes"); $parent_file = 'themes.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __('Overview'), 'content' => '

' . __('You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.') . '

' . __('Begin by choosing a theme to edit from the dropdown menu and clicking Select. A list then appears of all the template files. Clicking once on any file name causes the file to appear in the large Editor box.') . '

' . __('For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Lookup takes you to a web page with reference material about that particular function.') . '

' . __('After typing in your edits, click Update File.') . '

' . __('Advice: think very carefully about your site crashing if you are live-editing the theme currently in use.') . '

' . __('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.') . '

' . ( is_network_admin() ? '

' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '

' : '' ) ) ); get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Theme Development') . '

' . '

' . __('Documentation on Using Themes') . '

' . '

' . __('Documentation on Editing Files') . '

' . '

' . __('Documentation on Template Tags') . '

' . '

' . __('Support Forums') . '

' ); wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) ); if ( $theme ) $stylesheet = urldecode( $theme ); else $stylesheet = get_stylesheet(); $theme = wp_get_theme( $stylesheet ); if ( ! $theme->exists() ) wp_die( __( 'The requested theme does not exist.' ) ); if ( $theme->errors() && 'theme_no_stylesheet' == $theme->errors()->get_error_code() ) wp_die( __( 'The requested theme does not exist.' ) . ' ' . $theme->errors()->get_error_message() ); $allowed_files = $theme->get_files( 'php', 1 ); $has_templates = ! empty( $allowed_files ); $style_files = $theme->get_files( 'css' ); $allowed_files['style.css'] = $style_files['style.css']; $allowed_files += $style_files; if ( empty( $file ) ) { $relative_file = 'style.css'; $file = $allowed_files['style.css']; } else { $relative_file = urldecode( stripslashes( $file ) ); $file = $theme->get_stylesheet_directory() . '/' . $relative_file; } validate_file_to_edit( $file, $allowed_files ); $scrollto = isset( $_REQUEST['scrollto'] ) ? (int) $_REQUEST['scrollto'] : 0; switch( $action ) { case 'update': check_admin_referer( 'edit-theme_' . $file . $stylesheet ); $newcontent = stripslashes( $_POST['newcontent'] ); $location = 'theme-editor.php?file=' . urlencode( $relative_file ) . '&theme=' . urlencode( $stylesheet ) . '&scrollto=' . $scrollto; if ( is_writeable( $file ) ) { //is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable $f = fopen( $file, 'w+' ); if ( $f !== false ) { fwrite( $f, $newcontent ); fclose( $f ); $location .= '&updated=true'; $theme->cache_delete(); } } wp_redirect( $location ); exit; break; default: require_once( ABSPATH . 'wp-admin/admin-header.php' ); update_recently_edited( $file ); if ( ! is_file( $file ) ) $error = true; $content = ''; if ( ! $error && filesize( $file ) > 0 ) { $f = fopen($file, 'r'); $content = fread($f, filesize($file)); if ( '.php' == substr( $file, strrpos( $file, '.' ) ) ) { $functions = wp_doc_link_parse( $content ); $docs_select = ''; } $content = esc_textarea( $content ); } ?>

(' . $file_show . ')'; ?>

display('Name'); if ( $description ) echo ': ' . $description; ?>


errors() ) echo '

' . __( 'This theme is broken.' ) . ' ' . $theme->errors()->get_error_message() . '

'; ?>
parent() ) : ?>

parent() ) : ?>

get_template() ) ) . '">' . $theme->parent()->display('Name') . '' ); ?>

\n\t

" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "

\n\t

' . __('Oops, no such file exists! Double check the name and try again, merci.') . '

'; else : ?>
get_stylesheet() == get_template() ) : ?>

'2' ) ); else : ?>

the Codex for more information.'); ?>