Hallo zusammen,
ich hab mich jetzt - wirklich - schon durchs ganze Forum gesucht, aber keine Antwort gefunden.
Ich versuche mal mein Problem zu beschreiben:
Ich möchte weitere, teils selbst geschriebene, Widgets hinzufügen. Da ich das übers Adminmenü zu Steuern ganz pfifig finde, möchte ich eben nicht die Sidebar.php modifizieren, sondern... Und das ist jetzt die Frage?
Wo muss der Code hin, damit ich das Widget übers Admin-Menü steuern (an ausschalten, am Reiter Widgets) kann?
functions.php - soviel hab ich herrausgefunden.
hinzugefügt habe ich, gleich in die erste Zeile:
<?php function widget_shoutbox() {
?>
<div id="shoutbox" class="dbx-box">
<h2 class="dbx-handle">Shoutbox</h2>
<div class="dbx-content">
<ul><?php jal_get_shoutbox(); ?></ul>
</div>
</div>
<?php
}
if ( function_exists('register_sidebar_widget') )
register_sidebar_widget('Shoutbox', 'widget_shoutbox');
?>
Alles anzeigen
Funktioniert im Blog selber wunderbar, jedoch bekomme ich dann im "Admin-Login-Bereich" diese Fehlermeldungen:
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-login.php on line 12
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-login.php on line 24
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-includes/pluggable.php on line 492
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-includes/pluggable.php on line 493
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-includes/pluggable.php on line 494
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-includes/pluggable.php on line 495
Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-content/themes/default_de/functions.php:17) in /is/htdocs/wp1073541_SOFHMFQ0PH/www/mag/usa/wp-includes/pluggable.php on line 391
Kann mir jemand helfen? Vielen Dank im Vorraus!