wenn man die Fusszeile, die standardmäßig „Stolz präsentiert von WordPress“ beinhaltet muss man dies in der footer.php des aktuellem Themas tun.
Bei mir sieht das so aus:
<?php /** * The template for displaying the footer * * Contains footer content and the closing of the #main and #page div elements. * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ ?> </div><!-- #main --> <footer id="colophon" class="site-footer" role="contentinfo"> <?php get_sidebar( 'footer' ); ?> <div class="site-info"> <center> <?php do_action( 'twentyfourteen_credits' ); ?> © Copyright 2014 by <a href="http://www.uli.li/">www.uli.li</a> | powered by <a href="http://www.wordpress.org">WordPress</a> | <a href="http://www.uli.li/wordpress/datenschutzerklaerung/"> Datenschutzerklärung</a> | <a href="http://www.uli.li/wordpress/impressum">Impressum</a> </center> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>