If Function Exists – “Pluginifying” my Theme
-
I’m designing a theme. I’d like to use if(function_exists to check if Ultimate Tag Warrior is installed. So, basically, I *think* that I want to do something like merge
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>
with
<?php UTW_ShowWeightedTagSetAlphabetical("coloredsizedtagcloud","","") ?>
so that it checks to see if UTW exists, and then displays that (rather than a sidebar), but I’m not sure which part of the PHP code is needed for if(function_exists to work. How can this be done? Thanks in advance. ??
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘If Function Exists – “Pluginifying” my Theme’ is closed to new replies.