Title: fussco's Replies | WordPress.org

---

# fussco

  [  ](https://wordpress.org/support/users/fussco/)

 *   [Profile](https://wordpress.org/support/users/fussco/)
 *   [Topics Started](https://wordpress.org/support/users/fussco/topics/)
 *   [Replies Created](https://wordpress.org/support/users/fussco/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/fussco/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/fussco/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/fussco/engagements/)
 *   [Favorites](https://wordpress.org/support/users/fussco/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] [Plugin: Custom Post Type UI] Was working great, now it breaks built-in post types](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/)
 *  [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/#post-1684993)
 * AND SOLVED!
 * I was naming the custom taxonomy “menu” (as the site is for a restaurant and 
   I was distinguishing “food” items by “appetizer”, “entree”, “dessert”). UGH!!!!!!!!!!!!!!!!!!!!
   That naming convention broke it because of some conflicts.
 * **TAKE NOTE — you can’t have a custom taxonomy named “menu”.**
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] [Plugin: Custom Post Type UI] Was working great, now it breaks built-in post types](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/)
 *  [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/#post-1684992)
 * I retract that. Something happened! I had successfully created a custom post 
   type and the admin was great. I created posts within it. Then I went in to create
   2 additional custom post types and a custom taxonomy and then I went back and
   the admin is broken again.
 * OF INTEREST: When I delete the custom taxonomy the admin is fixed…. I’m not sure
   if this is stable/temporary, but it is an observation. It immobilizes me a little….
   Anyone else noticing this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] [Plugin: Custom Post Type UI] Was working great, now it breaks built-in post types](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/)
 *  [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/#post-1684991)
 * Apparently the database got corrupted somehow in tandem with the use of the plugin.
   I did a clean install and a built a new DB and all is well. No idea what triggered
   it….
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] [Plugin: Custom Post Type UI] Was working great, now it breaks built-in post types](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/)
 *  [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-was-working-great-now-it-breaks-built-in-post-types/#post-1684989)
 * I’m having the same issue. I’ve used the plugin successfully on several sites,
   but am now using it on another site and it is breaking administration for posts/
   pages and the 3 custom post types I have built…
 * I am running PHP 5, but had to update from 4 to 5 after my WP install. I’m not
   sure that would have impacted it though.
 * It displays the following in the left column which gets rid of the admin nav:
 * **Warning: Invalid argument supplied for foreach() in /public_html/wp-admin/menu-
   header.php> on line 40**
 * And in the right column it will say:
 * **No [Posts] Found, but above that it will show All (50) | Published (50)**
 * I’m using WP 3.0.1 and Custom Post Type UI version 0.6.2
 * Would love a solution asap if anyone can help. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Query Multiple Taxonomies] [Plugin: Query Multiple Taxonomies] Error if empty results when querying multiple taxonomies](https://wordpress.org/support/topic/plugin-query-multiple-taxonomies-error-if-empty-results-when-querying-multiple-taxonomies/)
 *  [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/plugin-query-multiple-taxonomies-error-if-empty-results-when-querying-multiple-taxonomies/#post-1612273)
 * That fixed it. Much appreciated scribu. YOU RULE!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Query Multiple Taxonomies] [Plugin: Query Multiple Taxonomies] Error if empty results when querying multiple taxonomies](https://wordpress.org/support/topic/plugin-query-multiple-taxonomies-error-if-empty-results-when-querying-multiple-taxonomies/)
 *  [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/plugin-query-multiple-taxonomies-error-if-empty-results-when-querying-multiple-taxonomies/#post-1612269)
 * scribu — Thanks a million for the plugin.
    1.3 alpha 4 WP 3.0.1
 * With the plugin deactivated the following works like a charm:
 * $args = array(
    ‘post_type’ => ‘restaurants’, ‘post_status’ => ‘publish’, ‘posts_per_page’
   => -1, ‘order’ => ‘ASC’, ‘orderby’ => ‘title’ ); query_posts($args);
 * When the plugin is activated the above returns nothing.
 * I tested and if I don’t query a taxonomy for a custom post type it displays nothing,
   yet if I create a dud custom taxonomy called “things” with term “thing” and assign
   it to each of my posts the following works like a charm:
 * $args = array(
    ‘post_type’ => ‘restaurants’, ‘post_status’ => ‘publish’, ‘posts_per_page’
   => -1, ‘order’ => ‘ASC’, ‘orderby’ => ‘title’, ‘things’ => ‘thing’ ); query_posts(
   $args);
 * Can the next update include a fix for this? I’m under a crazy deadline, so please
   let me know if this is an easy/fast fix and when you think it might be available.
 * Thanks again 100000000000 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [CMS – Clean Page structure](https://wordpress.org/support/topic/cms-clean-page-structure/)
 *  Thread Starter [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/cms-clean-page-structure/#post-864427)
 * Anyone have any ideas or suggestions?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [independent page giving errors](https://wordpress.org/support/topic/independent-page-giving-errors/)
 *  Thread Starter [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/independent-page-giving-errors/#post-839157)
 * The answer to this is to use page templates. They are pretty great.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [independent page giving errors](https://wordpress.org/support/topic/independent-page-giving-errors/)
 *  Thread Starter [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/independent-page-giving-errors/#post-839144)
 * Anyone, please??
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [independent page giving errors](https://wordpress.org/support/topic/independent-page-giving-errors/)
 *  Thread Starter [fussco](https://wordpress.org/support/users/fussco/)
 * (@fussco)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/independent-page-giving-errors/#post-839112)
 * Can someone please help me with this? I’m under a close deadline.
 * Thanks so much,

Viewing 10 replies - 1 through 10 (of 10 total)