11 lines
		
	
	
		
			422 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			422 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| EDITOR=vim
 | |
| TRANSFORM=('title' 'markdown') # empty or a subset of: 'title' 'markdown'
 | |
| 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
 | |
| 
 |