'<p>' .
__( '<a href="https://wordpress.org/documentation/article/appearance-theme-file-editor-screen/">Documentation on Editing Themes</a>'
) . '</p>' .
'<p>' .
__( '<a href="https://wordpress.org/documentation/article/editing-files/">Documentation on Editing Files</a>'
) . '</p>' .
'<p>' .
__( '<a href="https://developer.wordpress.org/themes/basics/template-tags/">Documentation on Template Tags</a>'
) . '</p>' .
'<p>' .
__( '<a href="https://wordpress.org/support/forums/">Support forums</a>'
) . '</p>'
);
wp_reset_vars( array
( 'action', 'error', 'file', 'theme'
) );
if ( $theme ) { $stylesheet =
$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() );
}