_get_meta_table

函数
_get_meta_table ( $type )
参数
  • (string) $type Type of object metadata is for. Accepts 'post', 'comment', 'term', 'user', or any other object type with an associated meta table.
    Required:
返回值
  • (string|false) Metadata table name, or false if no metadata table exists
定义位置
相关方法
_get_list_tableget_metadataget_meta_sqlget_media_statesget_meta_keys
引入
2.9.0
弃用
-

_get_meta_table: 这是一个用来获取特定数据库表的元表名称的函数。它接收一个数据库表名作为参数,并返回元表的名称。

为指定的对象类型检索元数据表的名称。

function _get_meta_table( $type ) {
	global $wpdb;

	$table_name = $type . 'meta';

	if ( empty( $wpdb->$table_name ) ) {
		return false;
	}

	return $wpdb->$table_name;
}

常见问题

FAQs
查看更多 >