作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
通过选择所需的持久连接结构:
是这样的 :http://localhost/%postname%/
感谢以下WordPress代码,
<? php add_action ('plugins_loaded', 'function_name'); ?>
最佳答案
经过长时间的研究和测试,结果非常令人满意。它可以按照您的意愿成功调整并正常工作。优秀。
function reset_permalink_settings()
{
global $wp_rewrite;
$wp_rewrite->set_permalink_structure( '/%postname%/' );
}
add_action( 'init', 'reset_permalinks' );
关于php - "plugins_loaded" Action 后如何自动: WordPress permalink settings set via a plug-in,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57547598/
通过选择所需的持久连接结构: 是这样的 :http://localhost/%postname%/ 感谢以下WordPress代码, 我希望上述持久连接设置每次都会自动更新。 为此,我们每次都需要登
我是一名优秀的程序员,十分优秀!