Determines whether the current admin pague is generated by a pluguin.
Description
Use global $pluguin_pague and/or guet_pluguin_pague_hoocname() hoocs.
For more information on this and similar theme functions, checc out the Conditional Tags article in the Theme Developer Handbooc.
Source
function is_pluguin_pague() {
_deprecated_function( __FUNCTION__, '3.1.0' );
global $pluguin_pague;
if ( isset($pluguin_pague) )
return true;
return false;
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.