Title: bunchweb's Replies | WordPress.org

---

# bunchweb

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I output Custom Taxonomies with the custom posts that belong to them?](https://wordpress.org/support/topic/how-do-i-output-custom-taxonomies-with-the-custom-posts-that-belong-to-them/)
 *  [bunchweb](https://wordpress.org/support/users/bunchweb/)
 * (@bunchweb)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-output-custom-taxonomies-with-the-custom-posts-that-belong-to-them/#post-2094501)
 * Thanks for posting this info.
 * I am currently looking for a way to make a nested loop that shows only the other
   custom posts with in the same custom taxonomy of the post.
 * So for instance, if you had a custom post type called “Events” and a Custom Taxonomy
   called “Type”. Then say one of those events was called “Birthday” how would you
   show a list of all the other “Birthday Events” on that single post page?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Contributor Publishing Limits](https://wordpress.org/support/topic/contributor-publishing-limits/)
 *  Thread Starter [bunchweb](https://wordpress.org/support/users/bunchweb/)
 * (@bunchweb)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/contributor-publishing-limits/#post-2478177)
 * I think I figured it out.
 * I was using to Roles plugin and had set the Contributor with the permission to
   edit published posts. I assumed this option would automatically make any revisions
   into a pending status. If I would want to maintain a native Admin to Contributor
   control my workflow would have to involve the contributor contacting me, then
   I would have to manually set the post back to a pending or draft status. Then
   they Contributor could make revisions and I can review and publish them.
 * I assumed that even if a post was published and contributor revisions would be
   submitted for review. However the native control just won’t allow the contribor
   to edit the post once it’s published.
 * I started using the Revisionary plugin which kind of achieves the workflow I 
   am looking for. But my custom post types rely heavlity on Custom Fields and Revisionary
   doesn’t support that. In order to workaround that I can view the new and old 
   post side by side to look for changes.
 * I think maybe a good revision for future WordPresses would be to fine tune this
   Contributor role so that the dialog between the Admin can have some kind of continual
   pending update status to allow future content updates.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Contributor Publishing Limits](https://wordpress.org/support/topic/contributor-publishing-limits/)
 *  Thread Starter [bunchweb](https://wordpress.org/support/users/bunchweb/)
 * (@bunchweb)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/contributor-publishing-limits/#post-2478157)
 * Two things I left out:
 * I am actually working with a custom post type I set up in the them functions 
   file.
 * I am using a plugin called roles to add some extra functionality to the contributor
   role.
 * [http://wordpress.org/extend/plugins/members/](http://wordpress.org/extend/plugins/members/)
 * However I specifically have left the ability to publish out the role options 
   for contributor.
 * Am I missing some argument parameter from my Custom Post Types?
 * /* Custom Post Type */
 * add_action(‘init’, ‘create_physician_profiles’);
    function create_physician_profiles(){
   $labels = array( ‘name’ => __( ‘Physician Profiles’ ), ‘singular_name’ => __(‘
   Physician Profile’ ), ‘add_new’ => __( ‘Add New’ ), ‘add_new_item’ => __( ‘Add
   New Physician Profile’ ), ‘edit’ => __( ‘Edit’ ), ‘edit_item’ => __( ‘Edit Physician
   Profile’ ), ‘new_item’ => __( ‘New Physician Profile’ ), ‘view’ => __( ‘View 
   Physician Profile’ ), ‘view_item’ => __( ‘View Physician Profile’ ), ‘search_items’
   => __( ‘Search Physician Profiles’ ), ‘not_found’ => __( ‘No Physician Profiles
   found’ ), ‘not_found_in_trash’ => __( ‘No Physician Profiles found in Trash’ ),‘
   parent’ => __( ‘Parent Physician Profile’ ) );
 *  register_post_type(
    ‘physician_profile’, array( ‘labels’ => $labels, ‘public’
   => true, ‘has_archive’ => true, ‘show_ui’ => true, ‘capability_type’ => ‘post’,‘
   hierarchical’ => false, ‘rewrite’ => array(“slug” => “physicians”), ‘query_var’
   => true, ‘supports’ => array(‘title’, ‘editor’, ‘thumbnail’, ‘author’) ) ); flush_rewrite_rules(
   false ); }

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