Hello.
I am new to WordPress. I wanted to add a ‘read more’ link to my home page. I edited the Twenty Twelve: Theme Functions (functions.php) and saved it the first time and it stated File edited succesfully. However when I edited it again, this fatal error message came up.
Fatal error: Cannot redeclare new_excerpt_more() (previously declared in /home/content/70/9739270/html/wp-content/themes/twentytwelve/functions.php:443) in /home/content/70/9739270/html/wp-content/themes/twentytwelve/functions.php on line 463
Can you please help?
Please note that I edited by adding this line:
(// Changing excerpt more
function new_excerpt_more($more) {
global $post;
return '… ID) . '">' . 'Read More »' . '';
}
add_filter('excerpt_more', 'new_excerpt_more');)