Generate WordPress Theme from GitHub Repository

The answer is already detailed here.. https://github.com/Automattic/_s#getting-started Unless you want something else. 🙂 Basically once you have a starter Underscores theme, it’s all a matter of editing the template files to get it to look the way you want it to.

Missing Logo in Repository

Comparing how your plugin is diplayed with your neighbour on the list here https://wordpress.org/plugins/search.php?q=custom+fields+taxonomies+light, they have 2 images on the CSS inline script, and yours only show one, the other background image url being empty. Yours: background-image: url(//ps.w.org/filter-custom-fields-taxonomies-light/assets/icon-256×256.png?rev=1110269 background-image: url() Theirs: background-image: url(//ps.w.org/advanced-custom-fields/assets/icon-128×128.png?rev=1082746 background-image: url(//ps.w.org/advanced-custom-fields/assets/icon-256×256.png?rev=1082746 If you are sure you uploaded that 128px image, in … Read more

Git: Merge a Remote branch locally

You can reference those remote tracking branches ~(listed with git branch -r) with the name of their remote. You need to fetch the remote branch: If you want to merge one of those remote branches on your local branch: Note 1: For a large repo with a long history, you will want to add the –depth=1 option when you … Read more