mirror of
https://ghproxy.net/https://github.com/CaptainCore/captaincore.git
synced 2026-08-04 14:10:32 +08:00
12 lines
218 B
Bash
12 lines
218 B
Bash
#!/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
|