이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

WP Revised Status

설명

Sometimes it would be useful to track changes in publishing status throughout time, but native WP revisions will always inherit the parent’s publishing status.

This plugin enables saving the post status (‘published’, ‘draft’, ‘pending’, etc) with each revision, so you can track publishing status where you have many users and accountability is desirable.

Available Hooks

wp-revised-status_tracked-posttypes

You can use this to set up posttypes to track without using the options page. Your function should return an associative array.

E.g.:

 add_filter( 'wp-revised-status_tracked-posttypes', function( $enabled ) {
 $enabled['post'] = 1;
 $enabled['page'] = 1;

 return $enabled;
 }


wp-revised-status_untracked-posttypes

Exactly the inverse of the previous hook. ** What you disable on this hook takes precedence to what you enable in the tracked_posttypes one.

E.g.:

function my_plugin_no_history( $disabled ) {
    $disabled['page'] = 1;

    return $disabled;
}
add_filter( 'wp-revised-status_untracked-posttypes', 'my_plugin_no_history' );


wp-status-revised_disable-options

If you are using the plugin inside a theme or another plugin, and want to disable the options page, you can just do:

add_filter( 'wp-status-revised_disable-options', '__return_true' )

Github

Github repository at plugin at https://github.com/yivi/wp-revised-status

스크린샷

  • The new revision status metabox
  • Options page to enable publishing status history for registered post types.

설치

  1. Unzip plugin’s files in a folder inside /wp-content/plugins/ directory
  2. 워드프레스의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.

FAQ

Where is published information saved?

An entry will be created on your post_meta for each revision, that will be deleted whenever a revision is deleted.

Are custom post types supported?

Any post type properly registered is supported. You need to enable support for any post type either through the settings page or using the appropriate filters.

Are custom post statuses supported?

Any custom post type registered should work… but let me know if it doesn’t. 🙂

Does this work with PHP < 5.3?

No, sorry. PHP5.3 at a minimum, but at least 5.4 is recommended.

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“WP Revised Status”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “WP Revised Status”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

0.8.1

  • Inline documentation in settings page
  • Show which settings have been set via filter hooks, and disable the gui for those.

0.7.0

  • Minor refactoring of main plugin classes

0.6.2

  • Minor packaging fixes

0.6

  • Initial public release