Add database prefix to status report
This commit is contained in:
parent
1d1a5d937c
commit
06e8c7e6de
|
@ -346,6 +346,11 @@ global $wpdb;
|
|||
<td class="help"><?php echo wc_help_tip( __( 'The version of WooCommerce that the database is formatted for. This should be the same as your WooCommerce Version.', 'woocommerce' ) ); ?></td>
|
||||
<td><?php echo esc_html( get_option( 'woocommerce_db_version' ) ); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td data-export-label="WC Database Prefix"><?php _e( 'Database Prefix', 'woocommerce' ); ?></td>
|
||||
<td class="help"><?php echo wc_help_tip( __( 'We recommend using a prefix having less than 20 characters.', 'woocommerce' ) ); ?></td>
|
||||
<td><?php echo $wpdb->prefix; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$tables = array(
|
||||
|
|
Loading…
Reference in New Issue