Thank you!!!
I must have mistyped that at least 3 times. lol
I think I need a break lol
Regards,
Graham
Hello I found the answer to my question, you use:
function Add_Footer()
{
//Add html here
echo 'hello I\'m a footer';
}
add_action ( 'wp_footer','Add_Footer' );
I managed to fall onto the answer after looking for a few hours. You have to use the !is_page() function. Here is my code:
function test ($text)
{
if(!is_feed() && !is_page())
{
$text = 'I\'m Confused'.$text;
}
return $text;
}
add_action('the_content', 'test');
Looks good, but I don’t like the footer, at first I though it was an error. The font size is too small to read all them numbers, you would be better off putting them on a new page. Even better create a search feature, so the user can search for their zip code instead of having to read all the numbers.