Hallo,
ich möchte bei unserern Blog in der Sidebar en Punkt Meta entfernen.
Jetzt habre ich es in der sidebar.php gelöscht jedoch tut sich nischt auf der seite.
Habt ihr noch eine Idee?
PHP
<?php
/**
* @package WordPress
* @subpackage Pretty_Theme
*/
?>
<div id="sidebar">
<ul>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<?php wp_list_pages('title_li=<h2>Home</h2>' ); ?>
<li><h2>Archiv</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php wp_list_categories('show_count=1&title_li=<h2>Kategorien</h2>'); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php wp_list_bookmarks(); ?>
<?php } ?>
<?php endif; ?>
</ul>
</div>
Alles anzeigen