How to write copyright link in the middle of footer in Twenty Fourteen?
-
Hello, I’m new to WordPress and recently installed the Twenty Fourteen theme. I would like to put a copyright logo with my name and a “Privacy Policy” link in the middle of the footer. I would be very grateful for any help.
Many thanks,
TamasThis how my footer.php looks like:
[ Moderator note: please wrap code in backticks or use the code button. ]
<?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"> <?php do_action( 'twentyfourteen_credits' ); ?> <a>"><?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?></a> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘How to write copyright link in the middle of footer in Twenty Fourteen?’ is closed to new replies.