RE: WordPress Steem 1.0.0 [BETA]

You are viewing a single comment's thread from:

WordPress Steem 1.0.0 [BETA]

in steemdev •  7 years ago 

Custom post type support would be great, your concern about exposing private data, for example a WooCommerce order, which is a post is relevant.

A pretty safe bet would be to respect the public flag of the post type object. You can get all public post types, like this $post_types = get_post_types( [ 'public' => true ]);

Let me know if you have questions about developing this plugin. WordPress plugin development is what I do.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Hi @shelob9,

Sorry for the late response. Currently the plugin supports posts and other custom post types. As what you have suggested to include the parameter "public" as true. Yep, I've already included that.

Anyways, if you have any other suggestions or want to contribute, you can always write a pull request at the repository: https://github.com/recrypto/wp-steem

Thanks for that! :)