Changeset 1016179
- Timestamp:
- 10/29/2014 08:38:49 PM (11 years ago)
- Location:
- flexible-posts-widget/trunk
- Files:
-
- 3 edited
-
readme.html (modified) (3 diffs)
-
readme.md (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flexible-posts-widget/trunk/readme.html
r1016149 r1016179 26 26 <li>Option to display the post feature image.</li> 27 27 <li>Select the post feature image size to display from existing image sizes: thumbnail, medium, large, post-thumbnail or any size defined by the current theme.</li> 28 <li>Order posts by: date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending.</li>28 <li>Order posts by: date, modified date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending.</li> 29 29 <li>Each widget’s output can be customized by user-defined templates added to the current theme folder.</li> 30 30 </ul> … … 57 57 1. Rename your theme’s <code>widget.php</code> template file to a name of your choice. Example: <code>my-template.php</code>. 58 58 1. Go to ‘Appearance’ > ‘Widgets’ in WordPress to configure an instance of the widget. 59 1. In the ‘Template Filename’ field choose the name of the template file you added to your theme. Example: <code> my-template</code></p>59 1. In the ‘Template Filename’ field choose the name of the template file you added to your theme. Example: <code>My Template</code></p> 60 60 61 61 <h2>Frequently Asked Questions</h2> … … 118 118 119 119 <ul> 120 <li>Dynamically populate the “Template Filename” field based on the templates available.</li> 121 <li>Add shortcode functionality.</li> 120 <li>Multilingual support (Polylang, WPML, etc.)</li> 121 <li>Make Tax-Term drop-down hierarchical.</li> 122 <li>Use search box instead of ID text field for post id’s</li> 123 <li>Shortcode functionality.</li> 124 <li>Get posts by Author.</li> 125 <li>Filter out the post currently being viewed.</li> 126 <li>Get posts from the same archive (term/post type/etc).</li> 127 <li>Limit results by a time period.</li> 122 128 </ul> 123 129 124 130 125 131 <h2>Changelog</h2> 132 133 <h3>3.4</h3> 134 135 <ul> 136 <li>Added Finnish language support. (Props: @eccola)</li> 137 <li>Made the Template Filename field a select box based on the templates available in the current theme, the parent theme (if the current theme is a child theme) and the plugin’s views folder. (Props @w3b-beweb)</li> 138 <li>Added a new default template (<code>Default.php</code>) that works better in most sidebar situations. The current default template (<code>Widget.php</code>) will be used by any existing widgets unless manually changed.</li> 139 <li>Added support to order posts by Modified Date.</li> 140 <li>Migrated admin CSS to SASS.</li> 141 <li>Much code clean up and refactoring.</li> 142 <li>Fixed an issue with language files not loading properly (Props @sajtdavid).</li> 143 </ul> 144 126 145 127 146 <h3>3.3.1</h3> -
flexible-posts-widget/trunk/readme.md
r1016149 r1016179 22 22 * Option to display the post feature image. 23 23 * Select the post feature image size to display from existing image sizes: thumbnail, medium, large, post-thumbnail or any size defined by the current theme. 24 * Order posts by: date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending.24 * Order posts by: date, modified date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending. 25 25 * Each widget's output can be customized by user-defined templates added to the current theme folder. 26 26 … … 44 44 1. Rename your theme's `widget.php` template file to a name of your choice. Example: `my-template.php`. 45 45 1. Go to 'Appearance' > 'Widgets' in WordPress to configure an instance of the widget. 46 1. In the 'Template Filename' field choose the name of the template file you added to your theme. Example: ` my-template`46 1. In the 'Template Filename' field choose the name of the template file you added to your theme. Example: `My Template` 47 47 48 48 … … 96 96 97 97 ### Future updates & feature requests list ### 98 * Dynamically populate the "Template Filename" field based on the templates available. 99 * Add shortcode functionality. 98 * Multilingual support (Polylang, WPML, etc.) 99 * Make Tax-Term drop-down hierarchical. 100 * Use search box instead of ID text field for post id's 101 * Shortcode functionality. 102 * Get posts by Author. 103 * Filter out the post currently being viewed. 104 * Get posts from the same archive (term/post type/etc). 105 * Limit results by a time period. 100 106 101 107 102 108 ## Changelog ## 109 110 ### 3.4 ### 111 * Added Finnish language support. (Props: @eccola) 112 * Made the Template Filename field a select box based on the templates available in the current theme, the parent theme (if the current theme is a child theme) and the plugin's views folder. (Props @w3b-beweb) 113 * Added a new default template (`Default.php`) that works better in most sidebar situations. The current default template (`Widget.php`) will be used by any existing widgets unless manually changed. 114 * Added support to order posts by Modified Date. 115 * Migrated admin CSS to SASS. 116 * Much code clean up and refactoring. 117 * Fixed an issue with language files not loading properly (Props @sajtdavid). 103 118 104 119 ### 3.3.1 ### -
flexible-posts-widget/trunk/readme.txt
r1016144 r1016179 22 22 * Option to display the post feature image. 23 23 * Select the post feature image size to display from existing image sizes: thumbnail, medium, large, post-thumbnail or any size defined by the current theme. 24 * Order posts by: date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending.24 * Order posts by: date, modified date, ID, title, menu order, random, Post ID Order; and sort posts: ascending or descending. 25 25 * Each widget's output can be customized by user-defined templates added to the current theme folder. 26 26 … … 44 44 1. Rename your theme's `widget.php` template file to a name of your choice. Example: `my-template.php`. 45 45 1. Go to 'Appearance' > 'Widgets' in WordPress to configure an instance of the widget. 46 1. In the 'Template Filename' field choose the name of the template file you added to your theme. Example: ` my-template`46 1. In the 'Template Filename' field choose the name of the template file you added to your theme. Example: `My Template` 47 47 48 48 … … 104 104 105 105 = Future updates & feature requests list = 106 * Dynamically populate the "Template Filename" field based on the templates available. 107 * Add shortcode functionality. 106 * Multilingual support (Polylang, WPML, etc.) 107 * Make Tax-Term drop-down hierarchical. 108 * Use search box instead of ID text field for post id's 109 * Shortcode functionality. 110 * Get posts by Author. 111 * Filter out the post currently being viewed. 112 * Get posts from the same archive (term/post type/etc). 113 * Limit results by a time period. 108 114 109 115 110 116 == Changelog == 117 118 = 3.4 = 119 * Added Finnish language support. (Props: @eccola) 120 * Made the Template Filename field a select box based on the templates available in the current theme, the parent theme (if the current theme is a child theme) and the plugin's views folder. (Props @w3b-beweb) 121 * Added a new default template (`Default.php`) that works better in most sidebar situations. The current default template (`Widget.php`) will be used by any existing widgets unless manually changed. 122 * Added support to order posts by Modified Date. 123 * Migrated admin CSS to SASS. 124 * Much code clean up and refactoring. 125 * Fixed an issue with language files not loading properly (Props @sajtdavid). 111 126 112 127 = 3.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.