";
}
/**
* Adds the afterfooter copyright area.
*
* @since 3.0
*/
function business_secondary_footer_copyright() {
global $options, $themeslug; //call globals
if ($options->get($themeslug.'_footer_text') == "") {
$copyright = get_bloginfo('name');
}
else {
$copyright = $options->get($themeslug.'_footer_text');
}
echo "";
echo "© $copyright";
echo "
";
}
/**
* Adds the CyberChimps credit.
*
* @since 3.0
*/
function business_secondary_footer_credit() {
global $options, $themeslug; //call globals
?>