Definition:
function is_plugin_page() {}
Whether the current page was created by a plugin.
The plugin can set this by using the global $plugin_page and setting it to true.
Source code
function is_plugin_page() {
global $plugin_page;
if ( isset($plugin_page) )
return true;
return false;
}
2163

February 12, 2011 


No comments yet... Be the first to leave a reply!