How to remove the link below in wordpress
1. Go to the management background, open the appearance-edit
2. Find "footer.php" and modify the code
3. Delete the following code:
<a href=“<?php echo esc_url( __( ‘http://wordpress.org/’, ‘twentyeleven’ ) ); ?>” title=“<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?>” rel=“generator”><?php printf( __( ‘Proudly powered by %s’, ‘twentyeleven’ ), ‘WordPress’ ); ?></a>
If you want to replace it with my blog style, please replace the deleted code with the following code:
<a href=“<?php echo get_option(‘home’); ?>” title=“<?php bloginfo(‘name’); ?>” rel=“generator”><?php bloginfo(‘name’); ?></a>
4. Click "Update File", then refresh your WP homepage, and it will be changed.
For more WordPress technical articles, please visit the WordPress Tutorial column!
The above is the detailed content of How to remove the link below in wordpress. For more information, please follow other related articles on the PHP Chinese website!