Hallo an alle!
Ich hoffe, ihr koennt mir helfen.
Ich habe nun eine Widget sidebar programmiert, funktionierte auch, nur wollte ich, dass fuer JEDEN Widget eine kleine Tabelle angelegt wird. Ich dachte es sollte so funktionieren:
PHP
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<table style="position:absolute; top:325px; left:1155px" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="18" height="18"><img src="phpbb/images/tl.png" width="18" height="18" alt="" /></td>
<td height="18" style="background:url\('phpbb/images/tm.png'\);"></td>
<td width="18" height="18"><img src="phpbb/images/tr.png" width="18" height="18" alt="" /></td>
</tr>
<tr>
<td width="18" style="background:url\('phpbb/images/ml.png'\);"></td>
<td>
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<th><span style="float: left"><img src="{T_THEME_PATH}/images/portal/portal_gallery.gif" width="18px" height="14px" alt="" /> cits</span></th>
</tr>
<tr class="row1">
<td>',
'after_widget' => '</td>
</tr>
</table>
</td>
<td width="18" style="background:url\('phpbb/images/mr.png'\);"></td>
</tr>
<tr>
<td width="18" height="18" align="right"><img src="phpbb/images/bl.png" width="18" height="18" alt="" /></td>
<td height="18" style="background:url\('phpbb/images/bm.png'\);"></td>
<td width="18" height="18"><img src="phpbb/images/br.png" width="18" height="18" alt="" /></td>
</tr>
</table>',
));
?>
Alles anzeigen
Nur ich bekomme den folgenden Fehler:
Zitat
Parse error: syntax error, unexpected T_STRING, expecting ')' in /var/www/vhosts/domain.tdk/httpdocs/zinas/wp-content/themes/design/functions.php on line 7
Aber ich habe doch die Klammern mit einem Backslash escaped?
Danke fuer eure Hilfe! :)
P.S. Hier ein Beispiel einer anderen Sidebar:
HTML
<table style="position:absolute; top:325px; left:655px" border="0" cellpadding="0" cellspacing="0" width="400px">
<tr>
<td width="18" height="18"><img src="phpbb/images/tl.png" width="18" height="18" alt="" /></td>
<td height="18" style="background:url('phpbb/images/tm.png');"></td>
<td width="18" height="18"><img src="phpbb/images/tr.png" width="18" height="18" alt="" /></td>
</tr>
<tr>
<td width="18" style="background:url('phpbb/images/ml.png');"></td>
<td>
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<th><span style="float: left"><img src="{T_THEME_PATH}/images/portal/portal_gallery.gif" width="18px" height="14px" alt="" /> Foruma "Sidebar"</span></th>
</tr>
<tr class="row1">
<td>
Texttext...
</td>
</tr>
</table>
</td>
<td width="18" style="background:url('phpbb/images/mr.png');"></td>
</tr>
<tr>
<td width="18" height="18" align="right"><img src="phpbb/images/bl.png" width="18" height="18" alt="" /></td>
<td height="18" style="background:url('phpbb/images/bm.png');"></td>
<td width="18" height="18"><img src="phpbb/images/br.png" width="18" height="18" alt="" /></td>
</tr>
</table>
Alles anzeigen
So eine Tabelle will ich um jeden einzelnen Widget.
Danke euch!