Plugin Directory

Changeset 519533


Ignore:
Timestamp:
03/15/2012 08:00:50 PM (14 years ago)
Author:
jhinson
Message:

updating documentation and functionality

Location:
quick-posts
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • quick-posts/tags/1.3/readme.txt

    r512927 r519533  
    44Tags: posts, pages, multiple pages, multiple posts, site framer, site framing, insert posts, quickly insert posts, multiple pages at once
    55Requires at least: 2.6
    6 Tested up to: 3.2.1
     6Tested up to: 3.3.1
    77Stable tag: 1.3
    88
     
    1111== Description ==
    1212
    13 Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1.3 now has the following features:
     13Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1.2 now has the following features:
    1414
    1515* Specify whether content to be added is a post or a page
    16 * Plugin also supports custom post types
    1716* If Pages are added, user can specify Parent Pages (to add children)
    1817* User can Assign a Page Template from a drop down.
     
    33321. Upload quick-posts to the /wp-content/plugins/ directory
    34332. Activate the plugin through the 'Plugins' menu in WordPress
    35 3. Insert Posts or Pages by Going to 'Quick Posts'
     343. Insert Posts or Pages by Going to 'Settings > Quick Posts'
    3635
    3736== Frequently Asked Questions ==
     
    4746== Changelog ==
    4847= 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
    5151= 1.2 =
    5252* Version 1.2 added, Tested up to WordPress 3.1
  • quick-posts/tags/1.3/templates/add-quick-post.php

    r512914 r519533  
    3838
    3939<div id="misc-publishing-actions">
    40 
     40   
    4141    <div class="general-options">
    4242        <div class="misc-pub-section">
    4343            <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 &nbsp; </option>
     46                <option value="post">Post</option>
    5647            </select>
    5748        </div>
     
    6051            <label for="post_status">Status:</label>
    6152            <select id="post_status" name="post_status">
    62 
    6353                <option value="publish" selected="selected">Published</option>
    6454                <option value="pending">Pending Review</option>
  • quick-posts/trunk/readme.txt

    r512927 r519533  
    44Tags: posts, pages, multiple pages, multiple posts, site framer, site framing, insert posts, quickly insert posts, multiple pages at once
    55Requires at least: 2.6
    6 Tested up to: 3.2.1
     6Tested up to: 3.3.1
    77Stable tag: 1.3
    88
     
    1111== Description ==
    1212
    13 Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1.3 now has the following features:
     13Quick Post enables a WordPress user to quickly add multiple posts or pages at once. Version 1.2 now has the following features:
    1414
    1515* Specify whether content to be added is a post or a page
    16 * Plugin also supports custom post types
    1716* If Pages are added, user can specify Parent Pages (to add children)
    1817* User can Assign a Page Template from a drop down.
     
    33321. Upload quick-posts to the /wp-content/plugins/ directory
    34332. Activate the plugin through the 'Plugins' menu in WordPress
    35 3. Insert Posts or Pages by Going to 'Quick Posts'
     343. Insert Posts or Pages by Going to 'Settings > Quick Posts'
    3635
    3736== Frequently Asked Questions ==
     
    4746== Changelog ==
    4847= 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
    5151= 1.2 =
    5252* Version 1.2 added, Tested up to WordPress 3.1
  • quick-posts/trunk/templates/add-quick-post.php

    r512927 r519533  
    3838
    3939<div id="misc-publishing-actions">
    40 
     40   
    4141    <div class="general-options">
    4242        <div class="misc-pub-section">
    4343            <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 &nbsp; </option>
     46                <option value="post">Post</option>
    5647            </select>
    5748        </div>
     
    6051            <label for="post_status">Status:</label>
    6152            <select id="post_status" name="post_status">
    62 
    6353                <option value="publish" selected="selected">Published</option>
    6454                <option value="pending">Pending Review</option>
Note: See TracChangeset for help on using the changeset viewer.