Skip to main content
How to Change the Footer Links in the Extra Theme

Learn how to add, remove, or modify default Extra's copyright text to suit your needs.

Updated over a week ago

Customizing the footer links in your Extra theme can enhance navigation and better align with your branding and content strategy.

In this article, we will guide you through the process of changing the footer links in the Extra theme.

In order to change the footer's copyright text, you can either use the Theme Builder and build a custom footer layout, or you can use a Child Theme to customize the PHP code of the footer area manually.

Using the Theme Builder to build a custom footer layout

  1. Go to WordPress Dashboard β†’ Extra β†’ Theme Builder

  2. In the Default Site template card, click on the Add Global Footer option

  3. Choose the Build Global Footer option

  4. Build your custom footer layout

Note: The Global Footer will be used across your entire website. For more information, please check the Theme Builder documentation.

Using a child theme to customize the footer's copyright text

  1. Download and Install the Extra's Child theme

  2. Using an FTP connection, or your hosting File Manager app or the Advanced File Manager plugin, copy the footer.php file from wp-content/themes/Extra to wp-content/themes/extra's child theme folder

  3. Open the footer.php file inside your child theme's folder

  4. Replace this PHP code:

    <p id="footer-info"><?php printf( et_get_safe_localization( __( 'Designed by %1$s | Powered by %2$s', 'extra' ) ), '<a href="http://www.elegantthemes.com" title="Premium WordPress Themes">Elegant Themes</a>', '<a href="http://www.wordpress.org">WordPress</a>' ); ?></p>

    With:

    <p id="footer-info">Your Own Footer Text Here!</p>

  5. Save your changes.

Important Note: If you modify any template files, like the footer.php without a Child Theme, directly in Parent theme files, then you will lose those changes upon updating.

Did this answer your question?