Commit 65ffe5bc authored by Jakob Moser's avatar Jakob Moser
Browse files

Use the built-in function to get the url to a page

parent f5e25f84
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
 */
?>
    <footer>
        <a href="<?php echo home_url()."/legal/#impressum"; ?>">Impressum</a> | <a href="<?php echo home_url()."/legal/#rechtliches"; ?>">Rechtliches</a> | <a href="<?php echo home_url()."/legal/#datenschutz"; ?>">Datenschutz</a>
        <a href="<?php echo home_url("legal/#impressum"); ?>">Impressum</a> | <a href="<?php echo home_url("legal/#rechtliches"); ?>">Rechtliches</a> | <a href="<?php echo home_url("legal/#datenschutz"); ?>">Datenschutz</a>
        <span class="copyright">&copy; <?php bloginfo('name'); ?>, <?php bloginfo('description'); ?></span>
    </footer>
    <?php wp_footer(); ?>