WordPress Sponsors Flip Plugin

I want to include this plugin on my website
http://wordpress.org/extend/plugins/wp-sponsor-flip-wall/

But instead of showing it on all pages, I want to show it only on a page I will create for sponsor. Is this even possible?

Read More

As per the instructions, to include the sponsors I have to call the following function

<?php wp_sfw_render(); ?>

I have tried to include this in footer.php and it correctly shows the sponsors on footer.

Can I add the same code in, say page.php and write a condition so that it will just show for a specific page?

Related posts

Leave a Reply

2 comments

  1. You have to use WordPress template system.

    You can copy a template eg: single.php to sponsor.php and follow WordPress Codex instructions.

    Then when you create a page, you can select which template to use.
    You can alter that template in any way that you want, including your flip wall:

    <?php wp_sfw_render(); ?>