wp_is_post_revision()

wp_is_post_revision( int|WP_Post $post ) 确定指定的文章是否为修订版。…

wp_is_post_revision( int|WP_Post $post )

确定指定的文章是否为修订版。
Determines if the specified post is a revision.

目录锚点:#参数#源码


参数(Parameters)

参数 类型 说明
$post (int | WP_Post) Post ID或Post对象。

源码(Source)

/**
 * Determines if the specified post is a revision.
 *
 * @since 2.6.0
 *
 * @param int|WP_Post $post Post ID or post object.
 * @return false|int False if not a revision, ID of revision's parent otherwise.
 */
function wp_is_post_revision( $post ) {
	if ( !$post = wp_get_post_revision( $post ) )
		return false;

	return (int) $post->post_parent;
}
更新版本 源码位置 使用 被使用
2.6.0 wp-includes/revision.php 18 12
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册