Hallo liebe Wordpress-Community,
ich möchte gerne im Footer "Proudly powered by Wordpress" bzw. den Themename entfernen.
In anderen Blogs von mir war dies nie ein Problem. Zudem habe ich alle Anleitungen zum Entfernen von "Proudly powered by Wordpress" gelesen, komme aber bei meinem aktuellen Theme einfach nicht weiter, da ich keinen direkten Link (wie üblich) zu Wordpress und dem Theme-Entwickler im Footer finden kann.
Ich nutze das "Ever After" als Child-Theme, übergeordnetes Theme ist das "Forever".
Hier der Footer:
PHP
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package Forever
* @since Forever 1.0
*/
?>
<?php
if ( is_home() ) {
// Highlight the latest Status or Quote post
$recent_formatted_args = array(
'order' => 'DESC',
'ignore_sticky_posts' => 1,
'posts_per_page' => '1',
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'terms' => array( 'post-format-status', 'post-format-quote' ),
'field' => 'slug',
'operator' => 'IN',
),
),
'no_found_rows' => true,
);
// Our new query for the latest Status or Quote section.
$recent_formatted = new WP_Query( $recent_formatted_args );
while ( $recent_formatted->have_posts() ) : $recent_formatted->the_post(); ?>
<div id="latest-message" class="format-<?php echo get_post_format(); ?>">
<div class="avatar"><?php echo get_avatar( $post->post_author, $size = '54' ); ?></div> <div class="message-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'forever' ) ); ?></div>
<p class="permalink"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'forever' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></p>
</div><!-- #latest-message -->
<?php endwhile;
} ?>
</div>
<?php
/* The footer widget area should only be triggered if any of the areas
* have widgets. So let's check that first.
*/
if ( is_active_sidebar( 'sidebar-2' )
|| is_active_sidebar( 'sidebar-3' )
|| is_active_sidebar( 'sidebar-4' )
|| is_active_sidebar( 'sidebar-5' )
) {
// If we get this far, we have widgets. Let do this.
?>
<div id="supplementary" <?php forever_footer_sidebar_class(); ?>>
<?php if ( is_active_sidebar( 'sidebar-2' ) ) { ?>
<div id="first" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-2' ); ?>
</div><!-- #first .widget-area -->
<?php } ?>
<?php if ( is_active_sidebar( 'sidebar-3' ) ) { ?>
<div id="second" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-3' ); ?>
</div><!-- #second .widget-area -->
<?php } ?>
<?php if ( is_active_sidebar( 'sidebar-4' ) ) { ?>
<div id="third" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-4' ); ?>
</div><!-- #third .widget-area -->
<?php } ?>
<?php if ( is_active_sidebar( 'sidebar-5' ) ) { ?>
<div id="fourth" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-5' ); ?>
</div><!-- #fourth .widget-area -->
<?php } ?>
</div><!-- #supplementary -->
<?php } // is_active_sidebar() ?>
<?php get_template_part( 'colophon' ); ?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
Alles anzeigen
Was genau muss ich entfernen?
Folgendes habe ich schon versucht zu entfernen. Proudly powered by WordPress war dann zwar verschwunden, aber mir wurde im Footer ein Fehler angezeigt:
PHP
</div> <div class="message-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'forever' ) ); ?></div>
<p class="permalink"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'forever' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></p>
</div><!-- #latest-message -->
<?php endwhile;
} ?>
</div>
Freue mich auf jede Antwort! Danke :grin: