Changeset 519533
- Timestamp:
- 03/15/2012 08:00:50 PM (14 years ago)
- Location:
- quick-posts
- Files:
-
- 4 edited
-
tags/1.3/readme.txt (modified) (4 diffs)
-
tags/1.3/templates/add-quick-post.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/templates/add-quick-post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-posts/tags/1.3/readme.txt
r512927 r519533 4 4 Tags: posts, pages, multiple pages, multiple posts, site framer, site framing, insert posts, quickly insert posts, multiple pages at once 5 5 Requires at least: 2.6 6 Tested up to: 3. 2.16 Tested up to: 3.3.1 7 7 Stable tag: 1.3 8 8 … … 11 11 == Description == 12 12 13 Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1. 3now has the following features:13 Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1.2 now has the following features: 14 14 15 15 * Specify whether content to be added is a post or a page 16 * Plugin also supports custom post types17 16 * If Pages are added, user can specify Parent Pages (to add children) 18 17 * User can Assign a Page Template from a drop down. … … 33 32 1. Upload quick-posts to the /wp-content/plugins/ directory 34 33 2. Activate the plugin through the 'Plugins' menu in WordPress 35 3. Insert Posts or Pages by Going to ' Quick Posts'34 3. Insert Posts or Pages by Going to 'Settings > Quick Posts' 36 35 37 36 == Frequently Asked Questions == … … 47 46 == Changelog == 48 47 = 1.3 = 49 * Version 1.2 added, Fixed issue with "cannot load quick-post" from Upgrade to 3.2.1 50 * Features added: Ability to choose custom post types. 48 * Fixed plugin 49 * Promoted plugin to sidebar, added icon 50 51 51 = 1.2 = 52 52 * Version 1.2 added, Tested up to WordPress 3.1 -
quick-posts/tags/1.3/templates/add-quick-post.php
r512914 r519533 38 38 39 39 <div id="misc-publishing-actions"> 40 40 41 41 <div class="general-options"> 42 42 <div class="misc-pub-section"> 43 43 <label for="post_type">Type:</label> 44 <select style="text-transform: capitalize;" id="post_type" name="post_type"> 45 <?php $args=array( 46 'public' => true, 47 ); 48 $output = 'names'; // names or objects, note names is the default 49 $post_types=get_post_types($args,$output); 50 foreach ($post_types as $key => $value) { ?> 51 <?php if ($value != 'attachment'): ?> 52 <option value="<?php echo $value; ?>"><?php echo $value; ?></option> 53 <?php endif; ?> 54 <?php } 55 ?> 44 <select id="post_type" name="post_type"> 45 <option value="page" selected="selected">Page </option> 46 <option value="post">Post</option> 56 47 </select> 57 48 </div> … … 60 51 <label for="post_status">Status:</label> 61 52 <select id="post_status" name="post_status"> 62 63 53 <option value="publish" selected="selected">Published</option> 64 54 <option value="pending">Pending Review</option> -
quick-posts/trunk/readme.txt
r512927 r519533 4 4 Tags: posts, pages, multiple pages, multiple posts, site framer, site framing, insert posts, quickly insert posts, multiple pages at once 5 5 Requires at least: 2.6 6 Tested up to: 3. 2.16 Tested up to: 3.3.1 7 7 Stable tag: 1.3 8 8 … … 11 11 == Description == 12 12 13 Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1. 3now has the following features:13 Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1.2 now has the following features: 14 14 15 15 * Specify whether content to be added is a post or a page 16 * Plugin also supports custom post types17 16 * If Pages are added, user can specify Parent Pages (to add children) 18 17 * User can Assign a Page Template from a drop down. … … 33 32 1. Upload quick-posts to the /wp-content/plugins/ directory 34 33 2. Activate the plugin through the 'Plugins' menu in WordPress 35 3. Insert Posts or Pages by Going to ' Quick Posts'34 3. Insert Posts or Pages by Going to 'Settings > Quick Posts' 36 35 37 36 == Frequently Asked Questions == … … 47 46 == Changelog == 48 47 = 1.3 = 49 * Version 1.2 added, Fixed issue with "cannot load quick-post" from Upgrade to 3.2.1 50 * Features added: Ability to choose custom post types. 48 * Fixed plugin 49 * Promoted plugin to sidebar, added icon 50 51 51 = 1.2 = 52 52 * Version 1.2 added, Tested up to WordPress 3.1 -
quick-posts/trunk/templates/add-quick-post.php
r512927 r519533 38 38 39 39 <div id="misc-publishing-actions"> 40 40 41 41 <div class="general-options"> 42 42 <div class="misc-pub-section"> 43 43 <label for="post_type">Type:</label> 44 <select style="text-transform: capitalize;" id="post_type" name="post_type"> 45 <?php $args=array( 46 'public' => true, 47 ); 48 $output = 'names'; // names or objects, note names is the default 49 $post_types=get_post_types($args,$output); 50 foreach ($post_types as $key => $value) { ?> 51 <?php if ($value != 'attachment'): ?> 52 <option value="<?php echo $value; ?>"><?php echo $value; ?></option> 53 <?php endif; ?> 54 <?php } 55 ?> 44 <select id="post_type" name="post_type"> 45 <option value="page" selected="selected">Page </option> 46 <option value="post">Post</option> 56 47 </select> 57 48 </div> … … 60 51 <label for="post_status">Status:</label> 61 52 <select id="post_status" name="post_status"> 62 63 53 <option value="publish" selected="selected">Published</option> 64 54 <option value="pending">Pending Review</option>
Note: See TracChangeset
for help on using the changeset viewer.