Steps
Goes to functions.php if not already there.
Call it in front with this:
<?php homealt(); ?>
Goes to functions.php if not already there.
Call it in front with this:
<?php echo get_homealt(); ?>
if ( ! function_exists( 'homealt' ) ) {
/**
* Display blog info only.
*/
function homealt() {
echo get_bloginfo();
}
}
if ( ! function_exists( 'get_homealt' ) ) {
/**
* Display blog info only.
*/
function get_homealt() {
return get_bloginfo();
}
}