Changeset 976246
- Timestamp:
- 09/01/2014 04:31:19 AM (12 years ago)
- File:
-
- 1 edited
-
wp-post-formats/trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-post-formats/trunk/readme.txt
r873182 r976246 4 4 Tags: post formats, wordpress 3.1 5 5 Requires at least: 3.1 6 Tested up to: 3.8.1 7 Stable tag: 0.3 6 Tested up to: 4.0 7 Stable tag: 1.0 8 License: GPLv2 or later 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 10 9 Allows You To Easily Edit Post Formats display.11 Allows you to easily edit the way your post formats display using the ACE editor and the Twig template engine. 10 12 11 13 == Description == 12 14 13 WP Post Formats creates a visual interface for modifying and editing how your post formats are formatted.15 WP Post Formats creates a powerful visual interface using the [ACE editor](http://ace.c9.io/) and the [Twig template engine](http://twig.sensiolabs.org/doc/templates.html) for safe, easy and functional modification of your post formats without ever having to enter into the files. 14 16 15 There Are A Number Of Tags Available To Use In Your Loops And You Can Add More Via A Hook. 17 **Functions:** 16 18 17 **Tags:** 19 The following functions are added to Twig for easy use. 18 20 19 20 {_permalink_} 21 {_content, more_link_text, stripteaser_} 22 {_excerpt_} 23 {_title, before, after_} 24 {_tags, before, sep, after_} 25 {_author_} 26 {_category, seperator, parents_} 27 {_time_} 28 {_post-thumbnail, size_} 29 {_term-list, taxonomy, before, sep, after_} 30 {_post-class_} 21 * {{ permalink() }} 22 * {{ content( more_link_text, stripteaser ) }} 23 * {{ excerpt() }} 24 * {{ title( before, after ) }} 25 * {{ tags( before, sep, after ) }} 26 * {{ author }} 27 * {{ category( seperator, parents ) }} 28 * {{ time( 'F j, Y') }} 29 * {{ post_thumbnail( size ) }} 30 * {{ term_list( taxonomy, before, sep, after ) }} 31 * {{ post_class() }} 32 * {{ shortcode( '[some-shortcode]') }} 33 * {{ post_meta( 'some-postmeta') }} 31 34 32 35 33 36 **Hooks:** 34 37 35 `do_action( 'wppf_tags' );` - Runs Right After The Tags Are Handled, Allowing You To Add More As You Please ( Let Me Know Ill Put Them In The Next Release ) 36 37 `apply_filters( 'wppf_before_tag' , '{_' );` - Allows you to filter the Start Tag used 38 `apply_filters( 'wppf_after_tag' , '_}' );` - Allows you to filter the End Tag used 38 WP Post formats has added a number of hooks and filters to enable easy modification of default functionality, this may void your warranty so use with care! If there is not one where you need it, drop me a line i'd be happy to add it in. 39 39 40 40 If You Have Any Feedback Or Suggestions, Feel Free To Drop Me A Line At [Tiger Strike Media](http://www.tigerstrikemedia.com/) … … 50 50 1. The Admin Interface Of WP Post Formats 51 51 52 == Frequently Asked Questions == 53 54 None Yet - [Ask Me One!](http://www.tigerstrikemedia.com/contact-us/) 55 52 56 == Changelog == 57 58 = 1.0 = 59 * NEW: Twig Template Engine 53 60 54 61 = 0.3 = … … 66 73 == Upgrade Notice == 67 74 75 = 1.0 = 76 MAJOR Update, WP Post Formats now uses the TWIG template engine. YOUR EXISTING TEMPLATES WILL BREAK, Please ensure you update your templates immediately after updating this plugin!! 77 68 78 = 0.3 = 69 79 Maintenance and bugfix Release. Added ACE Code editor
Note: See TracChangeset
for help on using the changeset viewer.