Möchte RSS Icon, RSS Comments und Entries aus meiner Theme , Anonymous Elegance entfernen.Was genau müßte ich löschen bzw. ändern?
Bin über jede Antwort dankbar.
footer.php
PHP
<div id="footer">
<p>Proudly Powered by <a href="http://www.wordpress.org">WordPress</a> | Theme by <a href="http://www.the-cloisters.net">The Cloisters</a> | <a href="<?php bloginfo('rss2_url'); ?>" class="rss">Entries RSS</a> <a href="<?php bloginfo('comments_rss2_url'); ?>" class="rss">Comments RSS</a></p></div>
</div></div>
<?php wp_footer(); ?>
</body>
</html>
header.php
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="Bluefish 1.0.7"/> <!-- leave this for stats please -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body>
<div id="wrapper">
<div id="main_content">
<div id="header-wrap">
<div class="header">
<div class="subscribe"><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Add this blog to any reader'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/rss.gif" alt="RSS" /></a></div>
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
<!-- Comment this section to turn off the header menu bar or uncomment to use -->
<?php if(function_exists('wp_page_menu')) : ?>
<?php wp_page_menu ('show_home=1&depth=1&title_li='); ?>
<?php else : ?>
<div class="menu">
<ul>
<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<?php wp_list_pages('depth=1&title_li='); ?>
</ul>
</div>
<?php endif; ?>
</div>
</div>
<!-- Comment this section to turn off the below the header menu bar or uncomment to use -->
<!-- <?php include('nav-menu.php');?> -->
Alles anzeigen