Hallo,
ich möchte bei unserer Seite imstyle.de eine linke Sidebar erstellen kann mir jemand sagen was ich machen muss?
ich habe das hier in unserer function.php gefunden
<?php
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
));
}
reicht es aus wenn ich nun das hier einfüge?
[LEFT][COLOR=#000000][COLOR=#0000bb]<?php
[/COLOR][COLOR=#ff8000]// Widget Settings
// erster Block
[/COLOR][COLOR=#007700]if ( [/COLOR][COLOR=#0000bb]function_exists[/COLOR][COLOR=#007700]([/COLOR][COLOR=#dd0000]'register_sidebar'[/COLOR][COLOR=#007700]) )
[/COLOR][COLOR=#0000bb]register_sidebar[/COLOR][COLOR=#007700](array(
[/COLOR][COLOR=#dd0000]'name' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]'linke Spalte'[/COLOR][COLOR=#007700],
[/COLOR][COLOR=#dd0000]'before_widget' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]''[/COLOR][COLOR=#007700], [/COLOR][COLOR=#ff8000]// Removes <li>
[/COLOR][COLOR=#dd0000]'after_widget' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]''[/COLOR][COLOR=#007700], [/COLOR][COLOR=#ff8000]// Removes </li>
[/COLOR][COLOR=#dd0000]'before_title' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]'<h2>'[/COLOR][COLOR=#007700],
[/COLOR][COLOR=#dd0000]'after_title' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]'</h2>'[/COLOR][COLOR=#007700],
));
[/COLOR][COLOR=#ff8000]// zweiter Block
[/COLOR][COLOR=#007700]if ( [/COLOR][COLOR=#0000bb]function_exists[/COLOR][COLOR=#007700]([/COLOR][COLOR=#dd0000]'register_sidebar'[/COLOR][COLOR=#007700]) )
[/COLOR][COLOR=#0000bb]register_sidebar[/COLOR][COLOR=#007700](array(
[/COLOR][COLOR=#dd0000]'name' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]'rechte Spalte'[/COLOR][COLOR=#007700],
[/COLOR][COLOR=#dd0000]'before_widget' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]''[/COLOR][COLOR=#007700], [/COLOR][COLOR=#ff8000]// Removes <li>
[/COLOR][COLOR=#dd0000]'after_widget' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]''[/COLOR][COLOR=#007700], [/COLOR][COLOR=#ff8000]// Removes </li>
[/COLOR][COLOR=#dd0000]'before_title' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]'<h2>'[/COLOR][COLOR=#007700],
[/COLOR][COLOR=#dd0000]'after_title' [/COLOR][COLOR=#007700]=> [/COLOR][COLOR=#dd0000]'</h2>'[/COLOR][COLOR=#007700],
));
[/COLOR][COLOR=#0000bb]?>[/COLOR] [/COLOR][/LEFT]