You are viewing a single comment's thread from:

RE: WordPress Steem 1.0.0 [BETA]

in #steemdev7 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.

Sort:  

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! :)