Title: suchapro's Replies | WordPress.org

---

# suchapro

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Custom Taxonomy not recognized](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/)
 *  Thread Starter [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/#post-10437488)
 * Yep, it’s ACF. Works like a charm using the default metaboxes.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Custom Taxonomy not recognized](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/)
 *  Thread Starter [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/#post-10437344)
 * I think I figured something out.
 * So, I got the custom taxonomies showing up correctly, but I realize that when
   I assign them using the ACF interface, it doesn’t actually assign them to the
   post. I may have to use the other interface to get it to work.
 * I’ll check with ACF as well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Custom Taxonomy not recognized](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/)
 *  Thread Starter [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/#post-10437306)
 * Here’s what I’m testing with:
 *  <?php
    $args = array( ‘post_type’ => ‘classes_camps’, ‘tax_query’ => array( 
   array( ‘taxonomy’ => ‘class_type’, ‘field’ => ‘slug’, ‘terms’ => array(‘first-
   stage’), ‘operator’ => ‘IN’ ) ), ‘posts_per_page’ => -1 );
 *  $query = new WP_Query($args);
 *  while($query -> have_posts() ) : $query -> the_post();
    ?>
 *  <h1><?php the_title(); ?></h1>
 *  <?php endwhile; wp_reset_query(); ?>
 * What I ultimately need to do:
 *  <?php
    $args = array( ‘post_type’ => ‘classes_camps’, ‘tax_query’ => array( ‘
   relation’ => ‘AND’, array( ‘taxonomy’ => ‘class_term’, ‘field’ => ‘slug’, ‘terms’
   => array(‘2018-summer’), ‘operator’ => ‘IN’ ), array( ‘taxonomy’ => ‘class_type’,‘
   field’ => ‘slug’, ‘terms’ => array(‘skills’), ‘operator’ => ‘IN’ ), array( ‘taxonomy’
   => ‘session’, ‘field’ => ‘slug’, ‘terms’ => array(‘afternoon’), ‘operator’ =>‘
   IN’ ) ), ‘posts_per_page’ => -1 );
 *  $query = new WP_Query($args);
 *  while($query -> have_posts() ) : $query -> the_post();
    ?>
 *  <h1><?php the_title(); ?></h1>
 *  <?php endwhile; wp_reset_query(); ?>
 * and this is working, but it’s not the ideal solution. I’d prefer the taxonomies
   attached to the post type:
 *  <?php
    $args = array( ‘post_type’ => ‘classes_camps’, ‘tax_query’ => array( ‘
   relation’ => ‘AND’, array( ‘taxonomy’ => ‘category’, ‘field’ => ‘slug’, ‘terms’
   => array(‘2018-summer’), ‘operator’ => ‘IN’ ), array( ‘taxonomy’ => ‘post_tag’,‘
   field’ => ‘slug’, ‘terms’ => array(‘first-class’), ‘operator’ => ‘IN’ ), array(‘
   taxonomy’ => ‘post_tag’, ‘field’ => ‘slug’, ‘terms’ => array(‘afternoon’), ‘operator’
   => ‘IN’ ) ), ‘posts_per_page’ => -1 );
 *  $query = new WP_Query($args);
 *  while($query -> have_posts() ) : $query -> the_post();
    ?>
 *  <h1><?php the_title(); ?></h1>
 *  <?php endwhile; wp_reset_query(); ?>
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Custom Taxonomy not recognized](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/)
 *  Thread Starter [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/#post-10437231)
 * They show up in Advanced Custom Fields, but on the actual post, it looks like
   a tag vs. a category.
 * Is there a way to hide these on the edit post page? I’m using them as a field
   in ACF and don’t want both showing up.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Custom Taxonomy not recognized](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/)
 *  Thread Starter [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/#post-10437199)
 * They don’t seem to be recognized by tax_query. Do I need to edit the query_var_slug?
 * The name is class_type, so I’m using ‘taxonomy’ => ‘class_type’,
 * I got them to show up in the quick edit, but they appear like tags vs. categories.
   Any way to get them to show up as check boxes?
 * Would access to the site help?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] Custom Taxonomy not recognized](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/)
 *  Thread Starter [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/custom-taxonomy-not-recognized/#post-10435682)
 * The other thing is that they don’t show up under quick-edit, which would also
   be very helpful.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flamingo] Unable to See or Edit Email Message](https://wordpress.org/support/topic/unable-to-see-or-edit-email-message/)
 *  [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/unable-to-see-or-edit-email-message/#post-9376133)
 * I’m having the same issue as well. But I’m using CF7 4.8.1
    -  This reply was modified 8 years, 9 months ago by [suchapro](https://wordpress.org/support/users/suchapro/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Document Gallery] How to remove file names](https://wordpress.org/support/topic/how-to-remove-file-names/)
 *  [suchapro](https://wordpress.org/support/users/suchapro/)
 * (@suchapro)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/how-to-remove-file-names/#post-5120562)
 * Is there a way to display the caption vs. the name of the document? I’d rather
   not have to rename every document as the names are fairly important as well.
 * If you can point me to a file, I might be able to bandaid it myself.
 * thanks.

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