Home  >  Article  >  CMS Tutorial  >  How to remove the link below in wordpress

How to remove the link below in wordpress

藏色散人
藏色散人Original
2019-07-15 10:08:492034browse

How to remove the link below in wordpress

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

How to remove the link below in wordpress

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn