How can i check the plugin is installed and status on ImpressPages 4.x?
I want to show rss feed link if RSS plugin is installed and active. Is there any function checking plugin status? I tried with ipGetOption()
, but options stored always whether plugin is active or not. I need to get Plugin
status that isActive
column.
<?php if($rss_url = ipGetOption('Rss.rssUrl')): ?>
<li class="rss"><a href="<?php echo $rss_url; ?>" title="RSS" target="_blank">RSS</a></li>
<?php endif; ?>