I am linking to a .gif image that is sometimes not posted yet. How do I check for this so that if it is not posted, I can make it go to a backup .gif? Thanks.
try is_file() or file_exists()
is(is_file("/your/gif/here.gif")) { //use it } else { // go to backup }