Abraham Garcia in WordPress   Sunday, March 13 2022

Custom Settings for WordPress Plugin

Create a Custom Settings Page on WordPress Backend for Display Custom Settings for WP Plugin. Simple and Easy Effective Method.

This is a short code snippet to get your custom settings for your WordPress plugin page. <?php function dbi_add_settings_page() { add_options_page( 'Example plugin page', 'Example Plugin Menu', 'manage_options', 'dbi-example-plugin', 'dbi_render_plugin_settings_page'

Continue reading