Sort:  

As of this moment, the plugin only works for the WordPress default "post" and with "categories" taxonomy. I'm still thinking ways to incorporate custom taxonomies. As of now, it's all the basic features incorporated as I want it as simple as possible.

I'm already in the midst of enabling custom post types and custom taxonomies. (I'm careful about it because some custom post types used by third-party plugins used it as objects for their application and it might contain sensitive data. It would be disaster if those sensitive data are posted in the blockchain.)

Thanks for your recommendation.

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.

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