How to Change theme footer text in wordpress

Go to Customizing Theme and Add below text in Additional CSS

/* Hide default theme footer */
.copyrights {
font-size: 0;
}

/* Add custom copyright to the footer */
.copyrights::after {
content: “Copyright © 2021 sample.com.”;
font-size: 15px;
}

Leave a Comment

Your email address will not be published. Required fields are marked *