创建带有分页帖子的重复页面的最佳方法是什么?

时间:2017-12-20 作者:user3088301

我需要做的是,每次我创建一篇帖子时,我都会为没有nextpage标签的原始帖子提供服务,并创建一个带有nextpage标签的独立版本(为了seo目的,我会将rel=canonical设置为原始帖子)。您认为什么是创建此功能的最佳方法?谢谢

1 个回复
SO网友:HU ist Sebastian

更简单的方法是使用$\\u GET参数(它不会更改wordpress使用的自动生成的规范地址)和content_pagination 过滤方式如下:

add_filter( \'content_pagination\', function($pages){
    if ( in_the_loop() && (isset($_GET[\'onepage\']) ){
        $pages = [ join( \'\', $pages ) ];
    }

    return $pages;
} );
快乐的编码。

结束

相关推荐

Posts list in custom taxonomy

我有这样的事情:$terms = get_the_terms( get_the_ID(), \'kosmetyki_dystrybutor\'); $terms_ids = []; foreach ( $terms as $term ) { $terms_ids[] = $term->term_id; } $args = array( \'post_type\' => \'kosmetyki\',