How to create plugin list groups?

Displaying some custom text there can be done using views_plugins filter: add_filter(‘views_plugins’, ‘add_plugins_views’, 10, 1); function add_plugin_views($views) { $views[‘foo’] => ‘bar (?)’; return $views; } If what you need is actually setting a property for all plugins and display a count of this custom property you might want to take a look at WP_Plugins_List_Table.

How to query posts that have certain post meta keys, and sort by meta key and/or value

how about array_reverse() http://php.net/manual/en/function.array-reverse.php there are a bunch of array manipulation functions at php.net. i’m always there looking something up. also sort() might be useful EDIT based on your comments: sort($album); print_r($album); should return: Array ( [0] => 001,Get Rich Or Die Tryin [1] => 002,Curtis [2] => 003,The Massacre [3] => 004,Before I Self … Read more

Dynamic dependent Dropdown lists for categories, sub-categories and posts

you may find your answer here and Here’s a demo of it. HTML code example <div class=”ccms_form_element cfdiv_custom” id=”style_container_div”> <label for=”brand”>Make:</label> <select size=”1″ id=”make” class=” validate[‘required’]” title=”” onChange=”updatepage();” type=”select” name=”style”> <option value=”-1″>–Choose a Make-</option> <option class=”Audio” value=”Audi”>Audi</option> <option class=”BMW” value=”BMW”>BMW</option> </select> <div class=”clear”></div><div id=”error-message-style”></div> <div id=”style-sub-1″ class=”BMW” style=”display: none;” name=”stylesub1″ onchange=”ChangeDropdowns(this.value)”> <label for=”brand”>Model:</label> <select name=”cat” … Read more