has_meta

函数
has_meta ( $postid )
参数
  • (int) $postid A post ID.
    Required:
返回值
  • (array[]) { Array of meta data arrays for the given post ID. @type array ...$0 { Associative array of meta data. @type string $meta_key Meta key. @type mixed $meta_value Meta value. @type string $meta_id Meta ID as a numeric string. @type string $post_id Post ID as a numeric string. } }
定义位置
相关方法
has_taghas_term_metaadd_metathe_metalist_meta
引入
1.2.0
弃用
-

has_meta – 这是一个WordPress函数,用于检查一个文章或页面是否有任何与之相关的自定义字段或元数据。自定义字段是一种存储关于一个文章或页面的额外信息的方式,例如作者信息或自定义设置。has_meta函数接收一个参数,即文章ID或对象,如果有任何与文章或页面相关的自定义元数据,则返回true。

返回给定文章ID的元数据。

function has_meta( $postid ) {
	global $wpdb;

	return $wpdb->get_results(
		$wpdb->prepare(
			"SELECT meta_key, meta_value, meta_id, post_id
			FROM $wpdb->postmeta WHERE post_id = %d
			ORDER BY meta_key,meta_id",
			$postid
		),
		ARRAY_A
	);
}

常见问题

FAQs
查看更多 >