Home > CMS Tutorial > WordPress > body text

How to remove the link below in wordpress

藏色散人
Release: 2019-07-22 13:36:13
Original
2026 people have browsed it

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>
Copy after login

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>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!