I accidentally created an error and can't figure out how to get rid of it. Any help would really be appreciated.
The error I'm receiving is below:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /functions.php on line 23
And here's a little more than the first 23 lines of code for functions.php:
<?php
// Start the engine
require_once(TEMPLATEPATH.'/lib/init.php');
// Add new image sizes
add_image_size('Slideshow', 500, 260, TRUE);
add_image_size('Mini', 90, 90, TRUE);
// Add widgeted footer section
add_action('genesis_before_footer', 'metric_include_footer_widgets');
function metric_include_footer_widgets() {
require(CHILD_DIR.'/footer-widgeted.php');
}
// Footer custom
add_filter('genesis_footer_creds_text', 'custom_footer_creds_text');
function custom_footer_creds_text($creds) {
$creds = '' . get_bloginfo('ª Merchant Financing') . ' • Built by Update Content ' . '';
return $creds;
}
// Customizes go to top text
add_filter('genesis_footer_backtotop_text', 'footer_backtotop_filter');
function footer_backtotop_filter($backtotop) {
$backtotop = '[footer_backtotop text="Top of Page"]';
return $backtotop;
}
What I don't get is that the code I was messing with isn't on line 23. It was this code...
// Footer custom
add_filter('genesis_footer_creds_text', 'custom_footer_creds_text');
function custom_footer_creds_text($creds) {
$creds = '' . get_bloginfo('ª Merchant Financing') . ' • Built by Update Content ' . '';
return $creds;
}
Specifically the code in bold. Any suggestions?
Sincerely,
-Ted