Wordpress modifies or deletes the "Thank you for using WordPress to create" at the bottom of the background written words

WordPress Tutorial five thousand two hundred and ninety-two

There is a small line at the bottom of the WordPress background: "Thank you for using WordPress to create." It indicates that this is a website built with WordPress. If you do not want to display this text or want to modify it to other text, you can use the following code to remove it.

Edit the functions.php file of the current theme in the first line <? php Add the following code (choose one from two):

1. Modify Text

 one two three four
 function footerText ( )  {
	 return  'This is the<a href=“ https://www.boke8.net ">The blog bar website</a>uses<a href=" http://wordpress.org/ ">WordPress</a>program ' ;
 } add_filter ( 'admin_footer_text' ,  'footerText' ,  nine thousand nine hundred and ninety-nine ) ;

2. Delete Text

 one two three four
 function footerText ( )  {
	 return  '' ;
 } add_filter ( 'admin_footer_text' ,  'footerText' ,  nine thousand nine hundred and ninety-nine ) ;

Highlight: