post_exists
函数
post_exists ( $title, $content = '', $date = '', $type = '', $status = '' )
- 参数
-
-
(string)
$title
Post title.- Required: 是
-
(string)
$content
Optional. Post content.- Required: 否
- Default: (empty)
-
(string)
$date
Optional. Post date.- Required: 否
- Default: (empty)
-
(string)
$type
Optional. Post type.- Required: 否
- Default: (empty)
-
(string)
$status
Optional. Post status.- Required: 否
- Default: (empty)
-
(string)
- 返回值
-
- (int) Post ID if post exists, 0 otherwise.
- 定义位置
-
-
wp-admin/includes/post.php
, line 789
-
wp-admin/includes/post.php
- 引入
- 2.0.0
- 弃用
- –
Determines if a post exists based on title, content, date and type.
function post_exists( $title, $content = '', $date = '', $type = '', $status = '' ) {
global $wpdb;
$post_title = wp_unslash( sanitize_post_field( 'post_title', $title, 0, 'db' ) );
$post_content = wp_unslash( sanitize_post_field( 'post_content', $content, 0, 'db' ) );
$post_date = wp_unslash( sanitize_post_field( 'post_date', $date, 0, 'db' ) );
$post_type = wp_unslash( sanitize_post_field( 'post_type', $type, 0, 'db' ) );
$post_status = wp_unslash( sanitize_post_field( 'post_status', $status, 0, 'db' ) );
$query = "SELECT ID FROM $wpdb->posts WHERE 1=1";
$args = array();
if ( ! empty( $date ) ) {
$query .= ' AND post_date = %s';
$args[] = $post_date;
}
if ( ! empty( $title ) ) {
$query .= ' AND post_title = %s';
$args[] = $post_title;
}
if ( ! empty( $content ) ) {
$query .= ' AND post_content = %s';
$args[] = $post_content;
}
if ( ! empty( $type ) ) {
$query .= ' AND post_type = %s';
$args[] = $post_type;
}
if ( ! empty( $status ) ) {
$query .= ' AND post_status = %s';
$args[] = $post_status;
}
if ( ! empty( $args ) ) {
return (int) $wpdb->get_var( $wpdb->prepare( $query, $args ) );
}
return 0;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。