3

如何通过functions.php更改永久链接设置(在子主题中为二十二)以使其激活并工作而无需手动执行任何操作?

我想这段代码应该可以工作 - 但它似乎没有......我想我错过了一些东西。

if($run_when_theme_is_activated_and_user_wants_this_permalink_structure){
        global $wp_rewrite;
        $wp_rewrite->set_permalink_structure( '/%postname%/' );
        $wp_rewrite->flush_rules();
}

当我刚刚访问“永久链接设置”页面时... wp-admin/options-permalink.php 然后确实已经选择了“帖子名称” ,并且现在测试时它可以工作。所以我不必保存或任何东西,只需访问此特定页面即可。请在解决方案中跳过必须手动访问永久链接设置的步骤。

4

2 回答 2

2

这应该在主题被激活时运行,所以只设置和刷新一次规则

add_action( 'after_setup_theme', 'reset_permalinks' );
function reset_permalinks() {
    global $wp_rewrite;
    $wp_rewrite->set_permalink_structure('/%postname%/');
    $wp_rewrite->flush_rules();
}
于 2013-05-03T18:24:25.783 回答
1

使用此代码。它将 100% 工作。谢谢

/**
 * Rewrite set up, when theme activate i mean
 */
if (isset($_GET['activated']) && is_admin()) {
    global $wp_rewrite;
    $wp_rewrite->set_permalink_structure('/%postname%/');
    $wp_rewrite->flush_rules();
}

/**
* Redirect to Permalink setting Page.
* Otherwise Redirect rule will not work Properly.
*/
function redirect_to_permalink() {

    wp_redirect('options-permalink.php');
}
add_action( 'after_switch_theme', 'redirect_to_permalink' );
于 2017-08-31T05:49:14.250 回答