Created
April 24, 2013 17:18
-
-
Save bentedder/5453842 to your computer and use it in GitHub Desktop.
A shortcode for using the Vertical Scroll plugin in your posts or pages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Vertical Scroll Shortcode | |
URI: http://www.bentedder.com | |
Description: Enhance the "Vertical Scroll" plugin with a shortcode to use in posts | |
Version: 1.0 | |
Author: Ben Tedder | |
Author URI: http://www.bentedder.com | |
License: GPL2 | |
*/ | |
function bt_vertical_scroll() { | |
ob_start(); | |
if (function_exists (vsrp)) { | |
vsrp(); | |
} | |
return ob_get_clean(); | |
} | |
add_shortcode('vertical_scroll', 'bt_vertical_scroll'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment