Articles

Salient – How to remove the period in the copyright text

62
0

A dumb theme design thing that I have to change all the time. Just a reminder.

salient > nectar > helpers > footer.php

See LINE 112



Change this...
$copyright_text = '© '. date( 'Y' ) . ' ' . esc_html( get_bloginfo( 'name' ) ) . '. ';

to this...
$copyright_text = '© '. date( 'Y' ) . ' ' . esc_html( get_bloginfo( 'name' ) ) . ' ';