• Hi there,

    I like the new theme. Twenty Thirteen. But I want to remove the “proudly powered by WordPress” footer link and change it to “Copyright (c) 2013” instead.

    How do I do that?

    In other words, where did Appearance->Editor go?

    Thanks.

Viewing 3 replies - 16 through 18 (of 18 total)
  • I guess you missed this part of the forum welcome?

    Unless you are using the same version of WordPress on the same physical server hosted by the same hosts with the same plugins, theme & configurations as the original poster, do not post in someone else’s thread. Start your own topic.

    The best place to post for help with that theme is on the theme’s own forum here:

    https://www.ads-software.com/support/theme/twentythirteen

    Please delete my above posts. I’m starting a new thread.
    Thanks.

    This works to me:

    <?php
    /**
     * The template for displaying the footer
     *
     * Contains footer content and the closing of the #main and #page div elements.
     *
     * @package WordPress
     * @subpackage Twenty_Thirteen
     * @since Twenty Thirteen 1.0
     */
    ?>
    
    		</div><!-- #main -->
    		<footer id="colophon" class="site-footer" role="contentinfo">
    			<?php get_sidebar( 'main' ); ?>
    
    			<div class="site-info">
    				<?php do_action( 'twentythirteen_credits' ); ?>
    				Your info here!
    			</div><!-- .site-info -->
    		</footer><!-- #colophon -->
    	</div><!-- #page -->
    
    	<?php wp_footer(); ?>
    </body>
    </html>
Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Twenty Thirteen Footer Question’ is closed to new replies.