Αυτό το πρόσθετο δεν έχει δοκιμασθεί με τις 3 τελευταίες κύριες εκδόσεις του WordPress. Μπορεί να μην αναπτύσσεται ή να υποστηρίζεται άλλο και να έχει προβλήματα συμβατότητας με τις πιο πρόσφατες εκδόσεις του WordPress.

Organize Drafts

Περιγραφή

Organize WordPress Drafts with “Draft Types.” Think of draft types as folders for sorting your drafts. Use the default types or add your own custom draft types.

Features:

  • Assign “Draft Types” to your drafts to improve your editing workflow and de-clutter your drafts.
  • Create your own Draft Types. Default types are: Idea, Needs Images, Outline, Old Junk, and Completed.
  • Sort your draft posts by draft types. When viewing your drafts, you will see a draft types column that can be sorted alphabetically.
  • By default, works with posts and pages. See the FAQ for how to configure this to work with custom post types.

Have an idea to improve this plugin? I’d like to hear about it.

Στιγμιότυπα

  • Manage Draft Types through the Wordpress Admin sidebar.

  • View and Soft Drafts by Draft Types column.

  • Easily select the Draft Type from a dropdown menu.

Εγκατάσταση

  1. Install the plugin in wp-content\plugins
  2. Activate the Plugin

Συχνές Ερωτήσεις

How do I use this plugin with a custom post type?

Add the following code to your theme’s functions.php file:

add_filter('lsw_default_post_types', 'associate_post_types_with_draft_types');
function associate_post_types_with_draft_types($post_types) {
    $post_types[] = 'YOUR_CUSTOM_POST_TYPE';
    return $post_types;
}

Replace “YOUR_CUSTOM_POST_TYPE” with the name of your custom post type.

Κριτικές

Δεν υπάρχουν αξιολογήσεις για αυτό το πρόσθετο.

Συνεισφέροντες & Προγραμματιστές

“Organize Drafts” είναι λογισμικό ανοιχτού κώδικα. Οι παρακάτω έχουν συνεισφέρει στη δημιουργία του.

Συντελεστές

Σύνοψη αλλαγών

1.0.1

  • Fixed issue with meta box appearing on published posts.

1.0.0: January 2016

  • First official release!