mirror of
https://gh.wpcy.net/https://github.com/CaptainCore/captaincore.git
synced 2026-04-22 20:45:45 +08:00
12 lines
218 B
Bash
Executable file
12 lines
218 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Preps permalink if needed
|
|
#
|
|
# `rewrite-prep`
|
|
#
|
|
|
|
if [[ $(wp option get permalink_structure) == '' ]]; then
|
|
# Update 'plain' permalink to 'post name'
|
|
wp rewrite structure '/%postname%/'
|
|
fi
|