• Resolved genericname

    (@genericname)


    How would I go about doing this? So far I have it showing up as a single ad and would like it to display a couple more using the section op-ad-template.

    use Facebook\InstantArticles\Elements\Ad;
    add_action( 'instant_articles_after_transform_post', 'place_ad');
    function place_ad($ia_post) {
    	$ia = $ia_post->instant_article;
    	$ia->addChild(Ad::create()->withSource('urlhere'));
    }

    https://wordpress.org/plugins/fb-instant-articles/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter genericname

    (@genericname)

    Got it.

    Vahan4033

    (@vahan4033)

    Can you please share with me how did you solve it?

    Vahan4033

    (@vahan4033)

    Got it!

    use Facebook\InstantArticles\Elements\Ad;
    add_action( 'instant_articles_after_transform_post', 'new_ad');
    
     function new_ad( $obj ) {
      $header = $obj->instant_article->getHeader();
    
     // print_r($header);die;
        $ad = Ad::create()
        ->enableDefaultForReuse()
        ->withWidth( 300 )
        ->withHeight( 250 );
    
        $document = new DOMDocument();
        $fragment = $document->createDocumentFragment();
        $valid_html = @$fragment->appendXML( "<script>ad code here</script>" );
    
            $ad->withHTML(
                $fragment
            );
            $header->addAd( $ad );
    
    }

    Hello Vahn,

    Can you detail about this issue… concretely I same problem…

    I want in put my direct ads to instant article…

    but it now showing up….

    please help….

    Regarded….

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Automatic placement of multiple ads’ is closed to new replies.