Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Tạo bảng trong Database với WordPress và PHP - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Khi bạn đang phát triển một chủ đề WordPress, quá trình tạo bảng trong cơ sở dữ liệu của WordPress là không thể thiếu. Để thực hiện điều này, bạn có thể sử dụng mã nguồn PHP dưới đây:

Đầu tiên là gọi biến global $wpdb và require file upgrade.php của WordPress:

<?php
global $wpdb;
$dbPrefix = $wpdb->base_prefix;

require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

Sau đó gọi function dbDelta với đối số truyền vào là câu lệnh SQL

<?php
dbDeltal('<sql_query_here>');

VD: Tạo 1 bảng CSDL

<?php
global $wpdb;
$dbPrefix = $wpdb->base_prefix;

require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

dbDelta("CREATE TABLE `{$dbPrefix}postinfo` (
  `post_id` bigint(20) UNSIGNED AUTO_INCREMENT,
  `is_featured` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `is_hot` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  `show_thumbnail` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  `source_content` longtext COLLATE utf8mb4_unicode_ci,
  `tutorial_short_title` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tutorial_level` tinyint(2) UNSIGNED NOT NULL DEFAULT '0',
  PRIMARY KEY (post_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;");

Kết quả:

Tạo bảng trong database wordpress
Tạo bảng trong database wordpress

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *