doufang8965 2017-11-19 05:50
浏览 36
已采纳

改变Imploding和Exploding

This code add ads in the content. I want to change the output. I added new details. I tried on it but I could not solve the problem.

add_filter( 'the_content', 'ads_paragraphs');
function ads_paragraphs( $content ) {

    $adsbeforeparagraph = array(1,3,5);

    global $post;

     $ad = 'ADS CODE';

    $content_expl = explode("<p>", $content);
    for ($i = 0; $i <count($content_expl); $i++ ) {
        if (in_array($i, $adsbeforeparagraph)){
            $content_expl[$i] = $ad . $content_expl[$i];
            }
    } 

     return implode("<p>", $content_expl);
    }

input is here:

<p>text text text</p>
<p>text text text</p>
<p>text text text</p>
<p>text text text</p>
<p>text text text</p>
<p>text text text</p>

output is here:

<p>ADS CODEtext text text</p>
<p>text text text</p>
<p>ADS CODEtext text text</p>
<p>text text text</p>
<p>ADS CODEtext text text</p>
<p>text text text</p>

I want this output:

ADS CODE<p>text text text</p>
<p>text text text</p>
ADS CODE<p>text text text</p>
<p>text text text</p>
ADS CODE<p>text text text</p>
<p>text text text</p>
  • 写回答

2条回答 默认 最新

  • douhuireng4407 2017-11-19 06:06
    关注

    Use like this

           $adsbeforeparagraph = array(1,3,5);
    
       global $post;
    
        $ad = 'ADS CODE';
        $content='<p>text text text </p>
                    <p>text text text</p>
                    <p>text text text </p>
                    <p>text text text </p>
                    <p>text text text </p>
                    <p>text text text </p>';
        $content_expl = explode("<p>", $content);
        for ($i = 1; $i <count($content_expl); $i++ ) {     
            if (in_array($i, $adsbeforeparagraph)){
                $content_expl[$i] ='ADS CODE <p>'.$content_expl[$i].'<p>';
            }
        }
        print_r(implode(" ", $content_expl));
    

    Check this , I've checked this. It works...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题