19 lines
232 B
PHP
19 lines
232 B
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Update something in the database
|
|
*
|
|
* @since 1.1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function dh_update_110_options() {
|
|
global $wpdb;
|
|
|
|
// do the thing here to update the database
|
|
}
|