Creates a full database table name for an unprefixed table name.
Description
See also
Parameters
- $table_name
-
(string) (Required) Unprefixed table name.
Return
(string) Full table name.
Source
File: src/components/legacy-upgrades.php
protected function get_full_table_name( $table_name ) { global $wpdb; return $wpdb->prefix . $this->get_prefix() . $table_name; }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |