Fußzeile ändern

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' ); ?>
					&copy; 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&auml;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>

 

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert