Home > Article > CMS Tutorial > How to modify the copyright at the bottom of wordpress
How to modify the copyright at the bottom of wordpress
First log in to the wordpress backend and find "Appearance" - "Edit".
Then enter the "Edit" page and find "Bottom (footer.php)"
Find
<a href=”<?php echo esc_url( __( ‘https://wordpress.org/’, ‘twentyfourteen’ ) ); ?>”><?php printf( __( ‘Proudly powered by %s’, ‘twentyfourteen’ ), ‘WordPress’ ); ?></a>
Delete this code and replace it with your own copyright information.
Finally click update file, the modification is completed, refresh the homepage to see the effect of the modification~
Notes
Before modifying, make a backup copy to avoid making modification errors and not being able to return to the initial state
For more WordPress technical articles, please visit the WordPress Tutorial column!
The above is the detailed content of How to modify the copyright at the bottom of wordpress. For more information, please follow other related articles on the PHP Chinese website!