如果是 amp 将内部链接更改为 amp 版本 (WordPress)

if is amp change internal links to amp version (WordPress)

我们使用 WordPress,如果 linked 页面有 amp 版本,我们想 link amp 到 amp。我们的 amp 结构如下:test.de/test/amp

不幸的是,我 functions.php 中的这段代码不适用于 link 硬编码在 post 内容中。我必须改变什么,所以它适用于每个内部 link:

add_filter( 'post_link', function( $url, $post ) {
    static $recursing = false;
    if ( $recursing ) {
        return $url;
    }
    $recursing = true;
    if ( ! function_exists( 'post_supports_amp' ) || ! post_supports_amp( $post ) ) {
        return $url;
    }
    if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) {
        $url = amp_get_permalink( $post->ID );
    }
    $recursing = false;
    return $url;
}, 10, 2 );

目前它也适用于规范 link,这对 seo 非常不利。如何预防?

如果您想替换 post 内容中的硬编码 link,我建议您使用 wordpress 的 "the_content" 过滤器。

https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content

add_filter( 'the_content', 'filter_function_name' )

据此您应该能够使用正则表达式匹配 link 并向其附加 /amp。

伪代码示例:

function my_the_content_filter($content)
{
    if (function_exists('is_amp_endpoint') && is_amp_endpoint()) {
        $patterns = array(
            //patterns
        );
        $replacements = array(
           //replacements

        );
        $content = preg_replace($patterns, $replacements, $content);
    }

    return $content;
}

add_filter('the_content', 'my_the_content_filter');

将这些功能添加到您的主题 'functions.php'。

/* post link filter */
add_filter( 'post_link', 'change_amp_url', 10, 2 );

function change_amp_url( $url, $postobj ) {
    static $recursing = false;
    if ( $recursing ) {
        return $url;
    }

    $recursing = true;
    if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) {
        if ( function_exists( 'post_supports_amp' ) && post_supports_amp( $postobj ) ) {
            $url = amp_get_permalink( $postobj->ID );           
        }
    }
    $recursing = false;
    return $url;
}

/* content link filter */
add_filter( 'the_content', 'change_amp_url_content' );

function change_amp_url_content($content)
{
    $dom = new DOMDocument();
    $dom->loadHTML($content);

    $tags = $dom->getElementsByTagName('a');
    foreach ($tags as $tag) {
        $link = $tag->getAttribute('href'); // original url
        $extralink = '';
        if(stristr($link,'#')) {
            $pagelinktemp = explode("#",$link);
            $pagelink = $pagelinktemp[0];
            $extralink = '#'.$pagelinktemp[1];
        } else {
            $pagelink = $link;
        }
        if($pagelink!="") {     
            $postid = url_to_postid($pagelink);
            $postobj = get_post($postid); // getting appropriate post object            
            if($postobj) {          
                $newlink = change_amp_url( $pagelink, $postobj ); //new url
            }
            else {
                $newlink = $link;
            }
        }
        else {
            $newlink = $link;
        }
        if($link != $newlink) // change if only links are different
        {
            $content = str_replace($link, $newlink.$extralink, $content);
        }
    }
    return $content;
}

/* override canonical link */
add_filter( 'wpseo_canonical', 'amp_override_canonical' );

function amp_override_canonical($url) {
    if ( substr($url,-4)=="/amp" ) {    
        $url = substr($url,0,-4);
    }
    return $url;
}

第一个函数将提供 AMP URL(如果存在)。

第二个将遍历内容中的每个 URL,如果有效则更改为 AMP URL。

最后一个将重写通过 Yoast SEO 插件显示的规范 URL。

我已经测试了 Outsource WordPress 提交的代码,一般来说它工作正常,但是 'amp_override_canonical 函数会覆盖页面的所有 url,删除 /amp。

我对这段代码做了一些修改,但它们并没有像我预期的那样工作。 'wpseo_canonical' 函数似乎在不同的上下文中被调用。

add_filter( 'wpseo_canonical', 'amp_override_canonical' );

function amp_override_canonical($url) {
    if ( substr($url,-4)=="/amp" ) {    
        $url = substr($url,0,-4);
    }
    return $url;
}