I'd like to create a conditional include that will display content only if the include file is present.
Here's my include as it is scripted now:
PHP Code:
<?php // import file include("wp-content/plugins/stuff.inc"); ?>
How would I add a conditional statement that would display nothing if stuff.inc is not present?
Thanks
|