I am getting this error...
Parse error: syntax error, unexpected T_STRING, expecting '{' in /home/content/66/7213066/html/wp-content/themes/pixelhappy/functions.php on line 10
and can not see what I am missing. Here is the section...
<?php
// Start the engine
require_once(TEMPLATEPATH.'/lib/init.php');
remove_action('genesis_meta', 'genesis_load_favicon');
// Modify speak your mind text in comments
add_filter('genesis_comment_form_args', 'custom_comment_form_args');
function custom_comment_form_args($args) {
$args['title_reply'] = 'leave a reply';
return $args;
}
Thank you SO much for any help!