wp_list_post_revisions
函数
      wp_list_post_revisions ( $post = 0, $type = 'all' )    - 参数
- 
- 
                (int|WP_Post)
 $post
 Optional. Post ID or WP_Post object. Default is global $post.- Required: 否
 
- 
                (string)
 $type
 ‘all’ (default), ‘revision’ or ‘autosave’- Required: 否
- Default: ‘all’
 
 
- 
                (int|WP_Post)
- 定义位置
- 
- 
                                  wp-includes/post-template.php
 , line 1956
 
- 
                                  wp-includes/post-template.php
- 引入
- 2.6.0
- 弃用
- –
Displays a list of a post’s revisions.
Can output either a UL with edit links or a TABLE with diff interface, and
restore action links.
function wp_list_post_revisions( $post = 0, $type = 'all' ) {
	$post = get_post( $post );
	if ( ! $post ) {
		return;
	}
	// $args array with (parent, format, right, left, type) deprecated since 3.6.
	if ( is_array( $type ) ) {
		$type = ! empty( $type['type'] ) ? $type['type'] : $type;
		_deprecated_argument( __FUNCTION__, '3.6.0' );
	}
	$revisions = wp_get_post_revisions( $post->ID );
	if ( ! $revisions ) {
		return;
	}
	$rows = '';
	foreach ( $revisions as $revision ) {
		if ( ! current_user_can( 'read_post', $revision->ID ) ) {
			continue;
		}
		$is_autosave = wp_is_post_autosave( $revision );
		if ( ( 'revision' === $type && $is_autosave ) || ( 'autosave' === $type && ! $is_autosave ) ) {
			continue;
		}
		$rows .= "t
n”;
	}
echo “
n”;
echo “
‘;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
 
      