Overriding functions in wordpress plugins

If the plugin displays content via any function, the code:

if(!function_exists('function_name')) function_name();

… is used for safety.

If your plugin is disabled, and the if (!function_exists('function_name')) is missing, your theme will throw a fatal error.