Problem About GPL Licence And WordPress Products

This is hard to answer in general, without looking at specific case of what sale of license implies for specific product. For general GPL compliance note that what is typically licensed is not code. You just get code provided. What license buys you are usually things like access to support and updates. GPL doesn’t regulate … Read more

How to create a Full RSS feed (secret URL) for certain users, short for the rest [closed]

A “secret” full text feed Here’s a demo plugin that gives you a full text feed at: example.tld/secretfeed/ Just remember to flush the rewrite rules, e.g. by visiting the Settings/Permalinks page: <?php /** * Plugin Name: Secret Full Text Feed * Plugin URI: http://wordpress.stackexchange.com/a/208724/26350 */ add_action( ‘init’, function() { add_feed( ‘secretfeed’, ‘do_feed_rss2’ ); }); add_action( … Read more

WordPress Premium Plugin (3rd Party Github User)

WordPress is licensed under GPL, which according to WordPress means that all WP plugins must also be licensed to be GPL compatible. There is debate about that, but almost all of the plugins in that person’s GitHub account are explicitly licensed under GPL. Under GPL it is technically legal to redistribute (including selling) the actual … Read more