这与.htaccess
而不是wordpress本身。
您可以只在htaccess文件中添加一行。
RewriteRule ^(.+)/theme-(.+)$ $1?themedemo=theme-$2%{query_string}
$1是参数1,是(++)的第一次出现,是页面名称。
$2是第二个参数,是(++)的第二次出现,与主题名称一样
所以如果你写:
example.com/about/theme-thesis 它应该得到内容from example.com/about?themedemo=theme-thesis
试试看!