admin管理员组

文章数量:1426594

Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 5 years ago.

Improve this question

I'm a working on editing a website done with wordpress and I want to change the copyright text in the footer but I can't find out how to do it because I'm a newbie.

If you have some clues, I would be pleased to get informed.

Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 5 years ago.

Improve this question

I'm a working on editing a website done with wordpress and I want to change the copyright text in the footer but I can't find out how to do it because I'm a newbie.

If you have some clues, I would be pleased to get informed.

Share Improve this question edited May 17, 2019 at 17:24 fuxia 107k39 gold badges255 silver badges459 bronze badges asked May 17, 2019 at 15:18 zakaria mouqcitzakaria mouqcit 1112 bronze badges 1
  • Which theme you have installed in website??? Please let me know so I can give you exact path of copyright in footer section. – Tanmay Patel Commented May 17, 2019 at 16:48
Add a comment  | 

2 Answers 2

Reset to default 2

It all depends on the theme. Some themes require you to modify one of their files (specifically, the footer.php file, usually) to remove the text. If you go this route, you'd want to create/use a Child Theme so that a theme update doesn't overwrite your changes. Copy your theme's footer.php into your Child Theme folder, then modify it for your needs. (Activate your Child Theme.)

If you just want to remove the text, then another, somewhat easier way is to modify the CSS that displays the copyright text. You could use the F12 inspector key in your browser, and then look for a 'class' for the code. Or look in the page source.

Then in the Additional CSS section of the theme customization, add code (this assumes that the class is set to 'copyright')

.copyright {display:none !important;}

The 'dot' is important.

And note that some theme authors don't like it if you remove the copyright notice, but (assuming it is an open-source theme), you can still do it. Paid themes may have more restrictive copyrights.

Have you tried looking in the Appearance>Widgets area? In my experience, sometimes the copyright text can live in a footer widget.

本文标签: themesChange copyright text on the footer section