root/afridex/plugins/Flutter/readme.txt @ 21

Revision 21, 3.2 kB (checked in by admin, 18 years ago)
Line 
1=== Flutter ===
2Contributors: alphaoide, coffee2code, freshout
3Tags: custom write panel, custom, write panel
4Requires at least: 2.3
5Tested up to: 2.5
6Stable tag: .11
7
8Flutter is for creating customized write panels with file and photo
9uploads.  Includes automatic photo resizing via phpThumb and freshout.
10
11
12== Description ==
13
14WordPress gets pretty close to becoming a practical content management solution with this plugin.
15Create multiple custom write panels, add custom fields (images, drop downs, file upload, images, checkboxes, textareas, etc..), photos can be automatically resized, cropped, watermarked, drop shadowed, and modified in many other ways (this plugin comes with php_thumb).
16In addition to being able to upload files from your computers, you can also retrieve Images from 3rd party sites on the fly.
17The core of this plugin was written by  Scott Reiley (http://www.coffee2code.com/wp-plugins/), Joshua Siguar (http://rhymedcode.net/projects/custom-write-panel), and Eric Pujol (http://phpthumb.sourceforge.net/).  All we did is add a bit of freshness.
18
19
20== Installation ==
21
22Follow the following steps to install this plugin.
23
241. Download plugin to the `/wp-content/plugins/` folder.
252. Activate the plugin through the 'Plugins' menu in WordPress.
26
27
28== Frequently Asked Questions ==
29
30= How do I create a new custom write panel? =
31
321. Go to 'Flutter' > 'Modules' click on 'Create Custom Write module' and follow the on-screen instruction.
332. Go to 'Flutter' > 'Write Panels' click on 'Create Custom Write panel' and add the module to the panel.
343. Go to 'Write' menu and you should see your new custom write panel beside 'page' sub-menu.
35
36
37= How do I add a custom input field? =
38
39After creating a custom module, click on 'View' to view the module info, click 'Create Custom Field'
40and follow on-screen instruction.
41
42
43= How do I get custom field to show up in my post? =
44
45There three different functions (get, get_image, get_audio) that you can use to retrieve the values for the fields you’ve created.
46
47You can always use the “get” function to grab the “naked” variable but we’ve also built the “get_image” and “get_audio” functions that will spit out the variable with html tags.
48
49Grabbing the Values
50get(’variable’) = naked variable
51get_image(’variable’) = variable with image tag
52get_audio(’variable’) = variable with single mp3 swf player
53
54An Example
55Let’s say you want to have an events page for your site so you created a new write panel and added a custom Image field called “Flyer”, a Date field called “Date” and an audio field called "MP3". So now how do we display it on the post page?
56
57To display the Flyer image: <?php echo get_image('Photos'); ?>" />
58To display the Date field: <?php echo get('Date'); ?>
59To display the MP3 Player (with the song): <?php echo get_audio('MP3'); ?>
60
61
62= Is this Fresh Page? =
63
64Yes, this is the same plugin as Fresh Page.
65
66
67== Credits ==
68
69* ["Joshua Sigar"](http://rhymedcode.net) The creator of Custom Write Panel
70* ["James Heinrich"](info@silisoftware.com) The creator of phpThumb
71* ["Scott Reilly"](http://www.coffee2code.com) The creator of get-custom plugin
Note: See TracBrowser for help on using the browser.