आपको बस दो चरणों की आवश्यकता है:
- कार्रवाई में हुक
admin_menu
, सामग्री को प्रिंट करने के लिए कॉलबैक फ़ंक्शन के साथ पृष्ठ को पंजीकृत करें।
- आपके कॉलबैक फ़ंक्शन में से फ़ाइल लोड करें
plugin_dir_path( __FILE__ ) . "included.html"
।
डेमो कोड:
add_action( 'admin_menu', 'wpse_91693_register' );
function wpse_91693_register()
{
add_menu_page(
'Include Text', // page title
'Include Text', // menu title
'manage_options', // capability
'include-text', // menu slug
'wpse_91693_render' // callback function
);
}
function wpse_91693_render()
{
global $title;
print '<div class="wrap">';
print "<h1>$title</h1>";
$file = plugin_dir_path( __FILE__ ) . "included.html";
if ( file_exists( $file ) )
require $file;
print "<p class='description'>Included from <code>$file</code></p>";
print '</div>';
}
मैंने अपने डेमो प्लगइन T5 एडमिन मेनू डेमो में एक उदाहरण जोड़ा, यह दिखाने के लिए कि यह सब मेनू में और ओओपी शैली में कैसे किया जाए।