• Hi Josh, quite useful plugin, thanks!

    Not a support but a feature request. That giant list of mime type in the plugin description makes an annoying effect in the plugins listing page wp-admin/plugin-install.php.

    I’m not sure if it is feasible, but what about: ac3 | ai | aif | aifc | aiff | au | avi | bmp | cat | clp | crd | css | etc... ?

    I just did this 🙂

    $api = plugins_api( 'query_plugins', $args );
    
    foreach( $api->plugins as $key=>$value )
    {
    	if( $value->slug == 'ap-extended-mime-types' )
    		$api->plugins[$key]->description = 'The description without the <ul><li>';
    }

    http://wordpress.org/extend/plugins/ap-extended-mime-types/

  • The topic ‘List MimeTypes as separated-values in plugin description’ is closed to new replies.