Skip to content

Instantly share code, notes, and snippets.

@afsalrahim
Last active March 25, 2016 10:08
Show Gist options
  • Save afsalrahim/de3aa80a257e0f055a6f to your computer and use it in GitHub Desktop.
Save afsalrahim/de3aa80a257e0f055a6f to your computer and use it in GitHub Desktop.
Creating wordpress shortcodes
<?php
/**
* Add shortcode for wordpress.
* Usage:
* - Add the below function in your functions.php file.
* - Replace [YOUR ADSENSE AD CODE] with javascript ad code obtained from adsense.
**/
add_shortcode('showads468x60', 'ad_display');
function ad_display() {
return '<div>[YOUR ADSENSE AD CODE]</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment