git-svn-id: https://develop.svn.wordpress.org/trunk@1638 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2004-09-11 16:12:40 +00:00
parent 3bfd308dc6
commit ddf9be9ef1
7 changed files with 541 additions and 20 deletions
@@ -77,6 +77,22 @@ function get_bloginfo($show='') {
case 'pingback_url':
$output = get_settings('siteurl') .'/xmlrpc.php';
break;
case 'stylesheet_url':
$output = get_settings('stylesheet');;
if (empty($output) || $output == 'default') {
$output = get_settings('home') . "/wp-layout.css";
} else {
$output = get_settings('home') . "/wp-content/themes/$output/style.css";
}
break;
case 'template_url':
$output = get_settings('template');;
if (empty($output) || $output == 'default') {
$output = get_settings('home');
} else {
$output = get_settings('home') . "/wp-content/themes/$output";
}
break;
case 'admin_email':
$output = get_settings('admin_email');
break;