字符串正则表达式匹配仅替换角色‘Conductor’

时间:2013-07-04 作者:Paul Thomson

目前我正在使用以下代码添加rel=nofollowtarget=_blank 我的网站内容的所有外部链接,但我希望这样only 在贡献者帖子上。也就是说,作者及以上的帖子没有重写规则。

<?php

add_filter( \'the_content\', \'cn_nf_url_parse\');

function cn_nf_url_parse( $content ) {

$regexp = "<a\\s[^>]*href=(\\"??)([^\\" >]*?)\\\\1[^>]*>";
if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) {
    if( !empty($matches) ) {

        $srcUrl = get_option(\'siteurl\');
        for ($i=0; $i < count($matches); $i++)
        {

            $tag = $matches[$i][0];
            $tag2 = $matches[$i][0];
            $url = $matches[$i][0];

            $noFollow = \'\';

            $pattern = \'/target\\s*=\\s*"\\s*_blank\\s*"/\';
            preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
            if( count($match) < 1 )
                $noFollow .= \' target="_blank" \';

            $pattern = \'/rel\\s*=\\s*"\\s*[n|d]ofollow\\s*"/\';
            preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
            if( count($match) < 1 )
                $noFollow .= \' rel="nofollow" \';

            $pos = strpos($url,$srcUrl);
            if ($pos === false) {
                $tag = rtrim ($tag,\'>\');
                $tag .= $noFollow.\'>\';
                $content = str_replace($tag2,$tag,$content);
            }
        }
    }
}

$content = str_replace(\']]>\', \']]&gt;\', $content);
return $content;

}

1 个回复
最合适的回答,由SO网友:kaiser 整理而成

author_can() 为此:

add_action( \'loop_start\', \'wpse105294_nofollow_author\' );
function wpse105294_nofollow_author()
{
    ! author_can( $GLOBALS[\'post\']->ID, \'edit_others_posts\' )
        AND add_filter( \'the_content\', \'cn_nf_url_parse\');
}
因此,您只为作者和其他无法edit_others_posts. 默认情况下,这是SubscriberAuthor. 有关更多信息,请查看Codex article about Roles and Capabilities.

编辑

因为我最近用PHP HTML DOM解析器做了一些工作,所以我认为使用这个可能更好。为了方便起见,代码主要取自@Alex answer on SO.

add_filter( \'the_content\', \'cn_nf_url_parse\');
function wpse_105294_Content_Parser( $content )
{
    $dom = new DOMDocument;
    $dom->loadHTML( $content );

    // DOMXPath() might be just too much
    $anchors = $dom->getElementByTagName( \'a\' );

    foreach ( $anchors as $a )
    {
        if ( 
            ! $a->hasAttribute( \'rel\' )
            OR \'\' === ( $rel = trim( $a->getAttribute( \'rel\' ) ) )
        )
            continue;

        $rel = preg_split( \'/\\s+/\', $rel );

        if ( in_array( \'nofollow\', $rel ) )
           continue;

        $rel[] = \'nofollow\';
        $anchor->setAttribute( \'rel\', implode( \' \', $rel ) );
    }

    $html = \'\';

    // Remove `html\\body` before returning
    foreach ( $dom->getElementsByTagName( \'body\' )->item(0)->childNodes as $el )
        $html .= $dom->saveXML( $el, LIBXML_NOEMPTYTAG );

    return $html;
}

结束

相关推荐

Apply_Filters()和_Excerpt提供了意外的结果

我觉得我一定错过了一些显而易见的东西,但我似乎无法让WordPress合作。我正在用一个函数生成Facebook OG标签。除了摘录,一切都很好。自get_the_excerpt($post->ID), 有没有其他方法可以创建摘录而不必创建一个全新的循环?我觉得这太过分了。我的第一反应是apply_filters():$description = apply_filters(\'the_excerpt\', get_post($post->ID)->post_content);