Einfach im Theme in die functions.php kopieren; wenn die Datei nicht existiert, muss sie erstellt werden. In jedem Fall sollte man sicherstellen, dass diese eigenen Funktionen nicht beim nächsten Update des Themes verloren gehen; im Zweifelsfall legt man sich ein Child Theme an.
Oder man legt diese Funktion als eigenes Modul in die Toolbox von Sergej Müller…
Eingebunden werden die Angaben über den Shortcode [bloginfo key="Ausgabewert"]; die möglichen Ausgabewerte stehen hier.
[php]
/**********
* bloginfo per shortcode ausgeben
*
* possible key values:
* http://codex.wordpress.org/Template_Tags/get_bloginfo
**********/
function bloginfo_shortcode( $atts ) {
extract(shortcode_atts(array(
‚key‘ => “,
), $atts));
return get_bloginfo($key);
}
add_shortcode(‚bloginfo‘, ‚bloginfo_shortcode‘);
[/php]

Joomla! 1.5 site in an intranet where internet access is only possible through a proxy server (despite the fact that I normally avoid Joomla! – I am using a different CMS for websites, not even WordPress). Out of the box, this is apparently not at all foreseen in the Joomla! configuration options – there is no option whatsoever for a proxy connection.
