GALLERY

flickr.com). With <set_tag="tag1, tag2, etc."> your are able to compile your own tag-based set from flickr. Please refer to idgettr.com to get the relevant information. You can as well implement a slideflickr.com show by putting the slideflickr id into <slidef="XYZ">. For your convenience you can as well use [set_id=XYZ] and/or [slidef=XYZ]. Version 5.0.1 or higher are requesting PHP5! Version: 5.1.6 Author: Jeannot Muller Author URI: http://www.ramgad.com/software/wordpress/wordpress-plugins/ Min WP Version: 2.5 Max WP Version: 3.4.1 */ // Update routines if ('insert' == $_POST['action_fssw']) { update_option("fssw_width",$_POST['fssw_width']); update_option("fssw_height",$_POST['fssw_height']); update_option("fssw_border",$_POST['fssw_border']); update_option("fssw_scroll",$_POST['fssw_scroll']); update_option("fssw_sfli_w",$_POST['fssw_sfli_w']); update_option("fssw_sfli_h",$_POST['fssw_sfli_h']); update_option("fssw_userid",$_POST['fssw_userid']); } if (!class_exists('fssw_main')) { class fssw_main { /** * PHP 4 Compatible Constructor */ function fssw_main(){$this->__construct();} /** * PHP 5 Constructor */ function __construct(){ // Registration add_action('admin_menu', 'fssw_description_add_menu'); add_filter('the_content', 'get_flickr_set_id'); } // Registration of WordPress-Hooks } function fssw_description_option_page() { ?>

FSSW Options

&updated=true">
Settings
Width: (flickr) " type="text" /> Example: 450
Height: (flickr) " type="text" /> Example: 450
Border: (flickr) " type="text" /> Example: 0
Scrolling (yes|no): (flickr) " type="text" /> Example: no
User-ID: (flickr) " type="text" /> Example: 12345678@A12 (please use slideflickr.com to retrieve your ID)
Width: (slideflickr) " type="text" /> Example: 450
Height: (slideflickr) " type="text" /> Example: 450

Call your flickr-slideshow-wrapper by adding <set_id="XYZ"> to your content. Please do not forget to replace XYZ by the set-id of the flickr-set you want to implement (flickr.com).

With <set_tag="tag1, tag2, etc."> your are able to compile your own tag-based set from flickr. You need to specify your flickr user-id under settings to get this feature look for tags in your library only. Please refer to idgettr.com to get the relevant information.

You can call as well a slideflickr.com slideshow by putting the slideflickr id into <slidef="XYZ">. Please be informed that slideflickr needs the same width and height values you defined during creation of your slideshow on their webpage - otherwise you'll see an endless loading bar.

If you have problems with FSSW, please feel free to drop a comment at: http://www.ramgad.com/software/wordpress/wordpress-plugins/

/', '', $content); $content = preg_replace('/\[set_id=([a-zA-Z0-9_]+)\]/', '', $content); $content = preg_replace('//', '', $content); $content = preg_replace('//', '', $content); $content = preg_replace('/\[slidef=([a-zA-Z0-9_]+)\]/', '', $content); return $content; } } //instantiate the class if (class_exists('fssw_main')) { $fssw_main = new fssw_main(); } ?>