What is the wordpress Git hub Repo master on beta?

I am not sure what gave you the idea 3.9 is latest, looking at Branches · WordPress/WordPress it hadn’t had commits in 3 months. Correct for what? If you want trunk then use master branch from GitHub. Typically you can, but it’s matter of probability and not guaranteed. WP won’t roll back any upgrade changes … Read more

Why doesn’t the “Press This” bookmarklet work on GitHub?

This is due to the Content Security Policy (CSP) that Github rolled out in April 2013. CSP shouldn’t cause problems with bookmarklets, but it does in practice. The issue isn’t specific to PressThis either. It causes problems with bookmarklets from Pinboard, Pocket and Instapaper. In Chrome you can hit F12 to open the developer tools … Read more

How to handle a GitHub webhook POST request?

First, you seem to misunderstand how PHP handles incoming POST request. It only exists in that instance webhook is making request. If you load that page in a browser there won’t be any POST data, unless you are submitting some. To properly check that request was received you should log results from that file and … 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

GitHub .md files to WordPress pages

I have found a plugin called WordPress GitHub Sync. It should be able to synchronize both ways. It hasn’t been updated in 5 months and it lacks a lot of documentation but I was able to import a file from my GitHub repository into WordPress. I still have to figure out how it exactly works, … Read more