如果要创建多篇文章,可以使用post_title
作为txt文件标题。
在同一个文件夹中,创建一个名为wp-post-create--loop-files.sh
具有以下功能:
#!/bin/bash
FILES=*.txt
for f in $FILES
do
echo "Processing $f file..."
# TEXTFILE = $f
# take action on each file. $f store current file name
# cat $TEXTFILE
wp post create "$f" --post_category=3 --post_title="$f" --user=3
done
然后,您可以通过执行
sh wp-post-create--loop-files.sh
.