Title: Missing posts table cpt-onomy taxonomy filtering dropdown
Last modified: August 21, 2016

---

# Missing posts table cpt-onomy taxonomy filtering dropdown

 *  Resolved [klihelp](https://wordpress.org/support/users/klihelp/)
 * (@klihelp)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/missing-posts-table-cpt-onomy-taxonomy-filtering-dropdown/)
 * Looks like instead CPT_ONOMIES_UNDERSCORE_ we have taxonomy-
 *     ```
       // in: admin.php#L900
       // CPT_ONOMIES_UNDERSCORE_ should be, but we have taxonomy-
       //
       //
       // if ( strpos( $column_name, CPT_ONOMIES_UNDERSCORE ) !== false ) {
       //     $taxonomy = strtolower( str_replace( CPT_ONOMIES_UNDERSCORE . '_', '', $column_name ) );
   
       if ( strpos( $column_name, CPT_ONOMIES_UNDERSCORE ) !== false
         || strpos( $column_name, 'taxonomy' ) !== false
         ) {
         $taxonomy = strtolower( str_replace( CPT_ONOMIES_UNDERSCORE . '_', '', $column_name ) );
         $taxonomy = strtolower( str_replace(  'taxonomy'. '-', '', $column_name ) );
       ```
   
 * [http://wordpress.org/plugins/cpt-onomies/](http://wordpress.org/plugins/cpt-onomies/)

Viewing 1 replies (of 1 total)

 *  [Rachel Cherry](https://wordpress.org/support/users/bamadesigner/)
 * (@bamadesigner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/missing-posts-table-cpt-onomy-taxonomy-filtering-dropdown/#post-4300176)
 * Ah man! I forgot about the dropdowns. Thanks for pointing this out. I’ve already
   got the fix in the trunk if you want to [replace your admin.php file with the file in trunk](http://plugins.svn.wordpress.org/cpt-onomies/trunk/).

Viewing 1 replies (of 1 total)

The topic ‘Missing posts table cpt-onomy taxonomy filtering dropdown’ is closed 
to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/cpt-onomies_f2f2f2.svg)
 * [CPT-onomies: Using Custom Post Types as Taxonomies](https://wordpress.org/plugins/cpt-onomies/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/cpt-onomies/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/cpt-onomies/)
 * [Active Topics](https://wordpress.org/support/plugin/cpt-onomies/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cpt-onomies/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cpt-onomies/reviews/)

## Tags

 * [admin](https://wordpress.org/support/topic-tag/admin/)
 * [klihelp](https://wordpress.org/support/topic-tag/klihelp/)
 * [taxonomy](https://wordpress.org/support/topic-tag/taxonomy/)
 * [ui](https://wordpress.org/support/topic-tag/ui/)

 * 1 reply
 * 2 participants
 * Last reply from: [Rachel Cherry](https://wordpress.org/support/users/bamadesigner/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/missing-posts-table-cpt-onomy-taxonomy-filtering-dropdown/#post-4300176)
 * Status: resolved