You appear to be a bot. Output may be restricted
Description
Return an array of plugin types This is used as a select field. The alternative is to use a custom category
Usage
$array = bw_plugin_types();
Parameters
Returns
array values for different plugin typesSource
File name: oik-plugins/oik-plugins.phpLines:
1 to 11 of 11
function bw_plugin_types() { $plugin_types = array( 0 => "None" , 1 => "WordPress plugin" , 2 => "FREE oik plugin" , 3 => "Premium oik plugin" , 4 => "Other premium plugin" , 5 => "Bespoke plugin" , 6 => "WordPress and FREE plugin" ); return( $plugin_types ); }View on GitHub