Title: gambit37's Replies | WordPress.org

---

# gambit37

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 111 total)

1 [2](https://wordpress.org/support/users/gambit37/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/gambit37/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/gambit37/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/gambit37/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/gambit37/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/gambit37/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OptionTree] Issue with WP 3.1.2 and formatting in admin?](https://wordpress.org/support/topic/issue-with-wp-312-and-formatting-in-admin/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/issue-with-wp-312-and-formatting-in-admin/#post-2096316)
 * OK, I finally worked out the culprit:
    [Easy Custom Post Types](http://codecanyon.net/item/easy-custom-content-types-for-wordpress/234182)—
   disabling it makes OptionTree work fine 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Tags in current category with custom post types](https://wordpress.org/support/topic/tags-in-current-category-with-custom-post-types/)
 *  [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/tags-in-current-category-with-custom-post-types/#post-1721131)
 * I found this post while searching for something similar: you saved me a lot of
   time. Many thanks 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sharing article on facebook – gravatar image shows](https://wordpress.org/support/topic/sharing-article-on-facebook-gravatar-image-shows/)
 *  [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/sharing-article-on-facebook-gravatar-image-shows/#post-1845600)
 * I’m having the same problem. I created a website for our local film society that
   runs on WordPress. Other Film Society staff create links on Facebook that link
   to posts on our WordPress site usually via BIT.LY.
 * Recent links have all been displayed with a picture of my face! EG:
 * It seems that, by default, Facebook is displaying the Gravatar associated with
   the user account of the person who originally wrote the post on the WordPress
   site. (In this case, that’s me.)
 * How do we resolve this? Is it a FaceBook issue or a WordPress issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OptionTree] [Plugin: OptionTree] Post / Posts / Custom Post should not be limited](https://wordpress.org/support/topic/plugin-optiontree-post-posts-custom-post-should-not-be-limited/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-optiontree-post-posts-custom-post-should-not-be-limited/#post-1783233)
 * I’m wondering if there’s any news on this issue? Is there an official update 
   coming that fixes the 5 limit for post selection?. Many thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[OptionTree] [Plugin: OptionTree] Post / Posts / Custom Post should not be limited](https://wordpress.org/support/topic/plugin-optiontree-post-posts-custom-post-should-not-be-limited/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/plugin-optiontree-post-posts-custom-post-should-not-be-limited/#post-1783187)
 * In functions/post.php, I changed lines 24 and 85 to:
    `$posts = &get_posts(array('
   numberposts' => -1, 'orderby' => 'date' ));`
 * In functions/custom-post.php, I changed line 24 to:
    `$posts = &get_posts( array('
   post_type' => trim($value->item_options), 'numberposts' => -1, 'orderby' => '
   title', 'order' => 'ASC' ) );`
 * You’d also want to change line 85 in custom-post.php, but I didn’t need to for
   my purposes. I also added ordering parameters.
 * I think category.php might need some love too — to enable ordering /sorting.
 * Perhaps you could also add sorting/ordering options for these types in the Option
   Tree settings?
 * Is the limit to 5 items a bug, or did I miss an option somewhere?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Verve Meta Boxes] [Plugin: Verve Meta Boxes] trashing and untrashing clears postmeta](https://wordpress.org/support/topic/plugin-verve-meta-boxes-trashing-and-untrashing-clears-postmeta/)
 *  [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/plugin-verve-meta-boxes-trashing-and-untrashing-clears-postmeta/#post-1660805)
 * This problem also exists when you revert to a previous version of a post using
   the WordPress revision system: all the VMD metadata is lost.
 * This is a major bug, I’ve also sent an email about it to the author. Hopefully
   all instances of this problem will be fixed in the next version.
 * I’m no WP coding expert, but I don’t think that the workaround posted above is
   sufficient.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Verve Meta Boxes] [Plugin: Verve Meta Boxes] Requiring custom-fields "support" is inconvenient](https://wordpress.org/support/topic/plugin-verve-meta-boxes-requiring-custom-fields-support-is-unnecessary-and-inconvenient/)
 *  [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/plugin-verve-meta-boxes-requiring-custom-fields-support-is-unnecessary-and-inconvenient/#post-1660804)
 * You can easily hide the Custom Fields meta box using a plugin such as Adminimize.
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [How to get functions like wp_get_archives to work with Custom Post Types?](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/#post-1497213)
 * I dip in and out of following WordPress development: I’m a bit out of the loop
   at the moment. Is there a good place to follow discussions on future developments
   of Custom Post Types? Cheers.
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [How to get functions like wp_get_archives to work with Custom Post Types?](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/#post-1497211)
 * I hope so. It does seem a strange design decision to exclude custom post types
   from working with many of the core WP functions. I realise that’s a big job, 
   but it does seem strange to bring out such a great feature that’s already half
   crippled from the start.
 * One might have assumed that people will want to use all the standard WP functions
   with Custom Post Types and I think a lot of people are going to be disappointed
   when they discover that they can’t. It seems a bit of a missed opportunity. 🙁
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [How to get functions like wp_get_archives to work with Custom Post Types?](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/#post-1497053)
 * Ah, right, thanks. Yes, I thought about this but still wanted to use some of 
   the built in stuff like displaying them in dated archives.
 * What I’m trying to do is to have something like this:
 * [http://www.mysite.com/blog/](http://www.mysite.com/blog/) <- display using standard
   WP blog stuff
    [http://www.mysite.com/news/](http://www.mysite.com/news/) <- 
   custom post types
 * For the News option, I’d ideally like to still filter them and manage them using
   all the standard WP functions.
 * I thought about doing them as category slugs instead and setting ‘Blog’ and ‘
   News’ categories and not using custom post types for News. But to do this, I’d
   need to set the custom permalinks to “%category%” which I’ve read is a bad idea.
 * Do you have any views on this, or suggestions for other ways I can accomplish
   this and still retain the correct child URLs for the different areas? Eg:
 * [http://www.mysite.com/blog/title-of-post-in-blog-cat/](http://www.mysite.com/blog/title-of-post-in-blog-cat/)
   
   [http://www.mysite.com/news/title-of-post-in-news-cat/](http://www.mysite.com/news/title-of-post-in-news-cat/)
 * Many thanks for any insights 🙂
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [How to get functions like wp_get_archives to work with Custom Post Types?](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-funcitons-like-wp_get_archives-to-work-with-custom-post-types/#post-1497024)
 * Hi, thanks for the reply. “Display the object in that post type” — not entirely
   sure what you mean by this? What object?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Post Type UI] Version 0.4.1 partially working with WP3 Beta 1](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/page/2/#post-1463525)
 * I’ve also been getting similar errors using another plugin, Verve Meta Boxes.
   When I reported it to the author, he fixed it: “Modified code to work in environments
   that utilize PHP strict.”
 * So I wonder if Custom Post Types GUI also needs to be modified to work with PHP
   strict?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Post Type UI] Version 0.4.1 partially working with WP3 Beta 1](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/page/2/#post-1463508)
 * I’ll have to come back to you on this as I’ve ditched the plugin for now and 
   have hand coded my custom posts stuff. Gotta get this project out the door! 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Post Type UI] Version 0.4.1 partially working with WP3 Beta 1](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/page/2/#post-1463496)
 * Yes, the original PHP error warning is still output, but no extra backtrace info
   is output.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Post Type UI] Version 0.4.1 partially working with WP3 Beta 1](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/)
 *  Thread Starter [gambit37](https://wordpress.org/support/users/gambit37/)
 * (@gambit37)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-version-041-partially-working-with-wp3-beta-1/page/2/#post-1463484)
 * I tried your suggestion but no extra info is output. Do you know where I find
   this ‘backtrace’? Should it be output in the HTML?

Viewing 15 replies - 1 through 15 (of 111 total)

1 [2](https://wordpress.org/support/users/gambit37/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/gambit37/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/gambit37/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/gambit37/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/gambit37/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/gambit37/replies/page/2/?output_format=md)