Skip to content

Backgrounds

How-to Guides

Technical References

Add “Powered by WordPress VIP” to your site

WordPress VIP always appreciates our clients displaying a “Powered by WordPress VIP” link in the footer of their theme. Service agreements with WordPress VIP may include this as a requirement, so please get in touch with any specific questions.

Most people put this link in the footer of their website. Rather than hardcoding this link, we would prefer if you used the existing helper function to do it: vip_powered_wpcom().

Example:

<?php echo vip_powered_wpcom(); ?>

If called with no arguments, vip_powered_wpcom() will return the following:

Powered by <a href="http://wpvip.com/" rel="generator">WordPress.com VIP</a>

However, you can customize that to better fit your site if you wish.

The first argument controls the output type. The default is text, but you can also pass the numbers 1 through 6 to use one of these images instead of text:

1.
2.
3.
4.
5.
6.

The second parameter only applies to the text format and controls the text before the link. It defaults to “Powered by ” (note the trailing space).

Last updated: April 09, 2021