Moving Blog and Changing URL

时间:2012-05-03 作者:Scott Phillips

我正在移动一个流量可观的博客,还有一些不错的谷歌果汁。我想尝试并主动修复将发生变化的链接。我如何循环浏览当前博客上的所有类别和标签,并生成所有URL的列表,以便检查它们将映射到哪里。。。。

谢谢

1 个回复
SO网友:fuxia

看看我的plugin T5 All URIs. 它打印帖子和条款的所有当前URI。

从…起function print_term_uris():

    $terms = get_terms(
        get_taxonomies(),
        array (
            \'hide_empty\' => FALSE,
            \'get\' => \'all\'
        )
    );

    foreach ( $terms as $term )
    {
        print "\\n" . get_term_link( $term );
    }
但是,如果您保持相同的永久链接设置,您的URI不会更改,只会更改主机。

结束