Skip to content

Instantly share code, notes, and snippets.

@esther
Created July 24, 2009 15:25
Show Gist options
  • Save esther/154365 to your computer and use it in GitHub Desktop.
Save esther/154365 to your computer and use it in GitHub Desktop.
<?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