Genesis Child Theme Quick Tip – Custom Footer Text

Changing the footer text using the Genesis framework requires the following code added to the bottom of the Functions.php file.

// Custom footer text
add_filter('genesis_footer_output', 'footer_output_filter', 10, 3);
function footer_output_filter($output, $creds_text) {
	$creds_text_start = 'Copyright © 2013 ';
	$bloginfo = get_bloginfo( $show );
	$creds_text_end = ' Add your Custom Footer Text Here ';
	$output = '
<div class="wrap-inside">
<div class="creds">' . $creds_text_start . $bloginfo . $creds_text_end . '</div>
</div>
'; return $output; }

Speak Your Mind

*