Automatically publish unique, relevant blogs each week from Copify's team of professional writers. Now includes royalty free images.
- PHP >= 5.3
- WordPress >= 3.2.0
- PHP cURL extension
- PHP JSON library
- Unzip and upload the
copifyfolder to your/wp-content/plugins/directory - Activate the plugin through the 'Plugins' menu
- Enter your API key which can be found on the settings page of your Copify account
The plugin is best used alongside one of Copify's monthly blog packages. Enable the auto-publish setting to allow posts to go live immediately and we'll even add a Featured Image to the post!
We want to use git for version control, but WordPress uses SVN. Urgh.
So, clone/initialize the SVN repo locally using git svn:
$ git svn init --stdlayout https://plugins.svn.wordpress.org/copify
$ git svn fetchOnce setup, we use --squash to keep things in single commits. E.g. workflow;
git checkout -b bugfix
# new changes
git commit -a
git checkout master
git merge --squash bugfixThen, we can use the dcommit option to sync back to WordPress's SVN repo.
$ git svn dcommitSet up a URL and svn branch for the assets
$ git config --add svn-remote.assets.url http://plugins.svn.wordpress.org/copify/assets
$ git config --add svn-remote.assets.fetch :refs/remotes/assetsExisting assets can then be fetched in to a new branch;
$ git svn fetch -r HEAD assets
$ git checkout -b assetsMake changes (edit icons or banners) then commit while on assets branch;
$ git commit -am "Edited icon"
$ git svn dcommit
