sheatsb (owner)

Fork Of

Revisions

  • 726718 Fri Jul 24 08:27:03 -0700 2009
  • b17400 Fri Jul 24 08:26:00 -0700 2009
gist: 163065 Download_button fork
public
Public Clone URL: git://gist.github.com/163065.git
Embed All Files: show embed
flickrRSS-shortcode.php #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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');
 
?>