If you’re a website proprietor who needs to collect and manage records, a WordPress plugin that uses a database may be on hand. In this newsletter, we’ll walk you via a way to create this sort of WordPress plugin, step by step.
Step 1:
Start by using putting in a plugin file. Make a brand new folder in the WordPress “wp-content/plugins” directory. Give it an understandable name, like “my-database-plugin”. In this folder, create a new report referred to as “my-database-plugin.Hypertext Preprocessor”. This is the primary record so that it will hold all of the code to connect to the WordPress database.
Step 2:
Begin with setting up the plugin header. You’ll do this inside the “my-database-plugin.php” file. The header needs details like the plugin name, version, author, and a short description. This is an example of a plugin header:
markdownCopy code/**
* Plugin Name: My Database Plugin
* Plugin URI: https://www.example.com/my-database-plugin
* Description: A plugin that uses a database to store information.
* Version: 1.0.0
* Author: Your Name
* Author URI: https://www.example.com
*/
Step 3:
Now, add the activation and deactivation hooks to your plugin file. These hooks get activated and deactivated as and when your plugin does. If they don’t exist, create the needed database tables inside the activation hook. On the other hand, delete the database tables in the deactivation hook if your plugin created them. Here’s a sample:
phpCopy coderegister_activation_hook( __FILE__, 'my_database_plugin_activate' );
register_deactivation_hook( __FILE__, 'my_database_plugin_deactivate' );
function my_database_plugin_activate() {
global $wpdb;
$table_name = $wpdb->prefix . 'my_plugin_data';
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE $table_name (
id mediumint(9) NOT NULL AUTO_INCREMENT,
name varchar(255) NOT NULL,
email varchar(255) NOT NULL,
PRIMARY KEY (id)
) $charset_collate;";
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $sql );
}
function my_database_plugin_deactivate() {
global $wpdb;
$table_name = $wpdb->prefix . 'my_plugin_data';
$sql = "DROP TABLE IF EXISTS $table_name;";
$wpdb->query( $sql );
}
Step 4:
Let’s make a settings page for the plugin. We need this for users. They can interact with the plugin. They can add data to the database too. This page will have a form. This form is for users. They can put their details in it. They can send it to the database. We’ll add a function in the plugin file. This function makes the settings page.
phpCopy codeadd_action( 'admin_menu', 'my_database_plugin_add_settings_page' );
function my_database_plugin_add_settings_page() {
add_menu_page(
'My Database Plugin Settings',
'My Database Plugin',
'manage_options',
'my-database-plugin',
'my_database_plugin_settings_page'
);
}
function my_database_plugin_settings_page() {
?>
<div class="wrap">
<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
<form method="post" action="<?php echo esc_url( admin_url( 'admin-post.php' ) ); ?>">
<input type="hidden" name="action" value="my_database_plugin_add_data">
<label for="name">Name:</label>
<input type="text
Step 5:
Let’s create code for form submissions. We have a data collection form now. We need code to manage form submissions. This code will store data in the database. We’ll use a WordPress action hook for this. It’s called “admin_post_”. We use this to manage submissions. We’ll add this code in our plugin file.
phpCopy codeadd_action( 'admin_post_my_database_plugin_add_data', 'my_database_plugin_add_data' );
function my_database_plugin_add_data() {
global $wpdb;
$table_name = $wpdb->prefix . 'my_plugin_data';
$name = sanitize_text_field( $_POST['name'] );
$email = sanitize_text_field( $_POST['email'] );
$wpdb->insert(
$table_name,
array(
'name' => $name,
'email' => $email,
)
);
wp_redirect( add_query_arg( 'added', 'true', $_POST['_wp_http_referer'] ) );
exit;
}
This code collects, cleans, and saves form data to avoid harmful database attacks.
Step 6:
Now let’s show the saved info! We need a new function for this purpose. It fetches and shows new data on the plugin settings page. In your plugin file, paste this code:
phpCopy codefunction my_database_plugin_display_data() {
global $wpdb;
$table_name = $wpdb->prefix . 'my_plugin_data';
$results = $wpdb->get_results( "SELECT * FROM $table_name" );
if ( $results ) {
echo '<ul>';
foreach ( $results as $result ) {
echo '<li>' . $result->name . ' - ' . $result->email . '</li>';
}
echo '</ul>';
} else {
echo 'No data found.';
}
}
This code will retrieve all the data in the database and display it on the plugin settings page.
Let’s Move to Step 7:
Now, we’ll put code to show messages. Want to let the user know if their form action was a success or a failure? That’s easy! Just add some code. Look for the “added” element in the URL. We’ll place this code into the plugin file. Ready? Here’s what you need to add:
phpCopy codeadd_action( 'admin_notices', 'my_database_plugin_display_message' );
function my_database_plugin_display_message() {
if ( isset( $_GET['added'] ) && $_GET['added'] == 'true' ) {
echo '<div class="notice notice-success is-dismissible"><p>Data added successfully.</p></div>';
}
}
With this code, the user will see a “job well done” message if they fill out your form right.
Step 8:
Ready to perfect your plugin? Next, run your trial. Do you need to do tweaks? Probably. How to start? Load the plugin folder. Where? Into the “wp-content/plugins” area. Then, turn on the plugin. Where? In the WordPress admin panel. Next, go to where you can tweak settings. What next? Check form submissions. Also, review data displays. Any hiccups? Unearth them with debugging tools, then fix them up.
So, you want a simple tool to help your WordPress site? A plugin is your answer. It helps you keep track of your site’s data. Here’s how simple it is to create one. Follow these easy steps, and you can have your plugin. Add information to a database, show it on your website, all with your handy plugin. With some checks and tweaks, it becomes a trusted tool for your WordPress site.