//* Customize the footer credits add_filter( 'genesis_footer_creds_text', 'my_custom_footer_creds' ); function my_custom_footer_creds(){ $creds = '© 2014 Carrie Dils.'; return $creds; } //* Use a short code instead function my_custom_footer_creds(){ $creds = '[footer_copyright] Carrie Dils.'; return $creds; } //* Add support for custom header add_theme_support( 'genesis-custom-header', array( 'width' => 320, 'height' => 120 ));