如何从wp functions.php代码中排除特定帖子?

时间:2018-12-09 16:28:51

标签: php wordpress

我使用此代码在第5段之后显示了来自adsense的自适应广告。

Adding Ads After First And Second Paragraph of WordPress Post

这是我在网站上使用的代码:

    function prefix_insert_after_paragraph2( $ads, $content ) {
    if ( ! is_array( $ads ) ) {
        return $content;
    }

    $closing_p = '</p>';
    $paragraphs = explode( $closing_p, $content );

    foreach ($paragraphs as $index => $paragraph) {
        if ( trim( $paragraph ) ) {
            $paragraphs[$index] .= $closing_p;
        }

        $n = $index + 1;
        if ( isset( $ads[ $n ] ) ) {
            $paragraphs[$index] .= $ads[ $n ];
        }
    }

    return implode( '', $paragraphs );
}

add_filter( 'the_content', 'prefix_insert_post_ads' );
function prefix_insert_post_ads( $content ) {
    if ( is_single() && ! is_admin() ) {
        $content = prefix_insert_after_paragraph2( array(
            // The format is: '{PARAGRAPH_NUMBER}' => 'AD_CODE',
            '5' => '<div>Ad code after FIRST paragraph goes here</div>',
        ), $content );
    }

    return $content;
}

我只想针对特定帖子排除此代码。如何添加适当的代码以能够排除帖子ID = 280的此功能?

谢谢。

2 个答案:

答案 0 :(得分:0)

您只需检查当前post_id。例如。 :

function prefix_insert_post_ads( $content ) {
    global $post;
    $post_id = $post->ID;
    $post_ids_excluded = [280,....]; // excluded posts ids

    if ( in_array($post_id,$post_ids_excluded) ){
       return $content;
    }               

    /*
     ... the same code .....
    */   
}

答案 1 :(得分:0)

为什么要在functions.php中排除此功能? 我认为在post循环内执行此操作要容易得多。 例如,要排除POST ID 280,如果您位于page.php或类似文件中,则可以执行以下操作:

global $post;
if ($post->ID == 280){ remove_filter( 'the_content', 'prefix_insert_post_ads' ); }

通过这种方式,您可以在functions.php文件中使用“ add_filter”,如果在帖子中找到异常(ID = 280),则可以删除过滤器。