2020-10-06 20:28:37 +00:00
|
|
|
#!/bin/bash
|
|
|
|
EDITOR=vim
|
2020-10-06 21:17:14 +00:00
|
|
|
TRANSFORM="" # '' / 'markdown'
|
2020-10-06 20:28:37 +00:00
|
|
|
USER="" # WP user to create the post
|
|
|
|
PASSWORD="" # application password generated for your WP user
|
|
|
|
SERVER="" # server hostname, optionally with subdirectories
|
|
|
|
STATUS="draft" # one of publish,future,draft,pending,private
|
|
|
|
CATEGORIES="" # comma separated integer IDs of categories
|
|
|
|
TAGS="" # comma separated integer IDs of tags
|
|
|
|
|