I know this is an odd request, but I can't figure out how to do it... ANY help is appreciated!
I have a site that uses the plugin "Improved Include Page" which "gets" pages by calling them with code like
<?php if(function_exists('iinclude_page')) iinclude_page(1); ?> (where "1" is the page number).
Now, I also have the plug-in "Bunny's Technorati Tags" employed on the site & would like to display the Technorati Tags for those pages called with the "Improved Include Page" code above.
Bunny's Technorati Tags require the following code to display the tags on a page:
<?php the_bunny_tags(); ?>
THE QUESTION: Is there a way to add <?php the_bunny_tags(); ?> to the "Improved Include Page" plugin so that using the code <?php if(function_exists('iinclude_page')) iinclude_page(1); ?> would display BOTH the page's contents AND the Technorati tags for that page?
THANKS for any & all help!