Definition:
function is_plugin_page() {}
Is the current admin page generated by a plugin?
Source code
function is_plugin_page() {
_deprecated_function( __FUNCTION__, '3.1' );
global $plugin_page;
if ( isset($plugin_page) )
return true;
return false;
}
9906

February 24, 2011 


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