Created
July 24, 2009 15:25
-
-
Save esther/154365 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| /** | |
| * @package flickrRSS Shortcode | |
| * @author Esther S White | |
| * @version .1 | |
| */ | |
| /* | |
| Plugin Name: flickrRSS Shortcode | |
| Plugin URI: | |
| Description: flickrRSS Shortcode adds a shortcode for the <a href="http://eightface.com/wordpress/flickrrss/">flickrRSS plugin</a> by Dave Kellam . | |
| Author: Esther S White | |
| Version: .1 | |
| Author URI: http://blog.estherswhite.net | |
| */ | |
| /*====================== | |
| Creates Shortcode for FlickrRSS | |
| =======================*/ | |
| function shortcode_flickrRSS($attr = null, $content = null) { | |
| $output = get_flickrRSS(); | |
| return $output; | |
| } | |
| add_shortcode('flickrgallery', 'shortcode_flickrRSS'); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment