Jump to content

Change text output position of PHP


brendas

Recommended Posts

Hello,

 

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

Thanks.

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:

<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:

<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>
Link to comment
Share on other sites

You could use array_walk


$ad  = 'ADS CODE';

$data = [ '<p>test test test</p>',
          '<p>test test test</p>',
          '<p>test test test</p>',
          '<p>test test test</p>',
          '<p>test test test</p>',
          '<p>test test test</p>'   ];

array_walk ($data, 'add_prefix', $ad);


function add_prefix (&$item, $key, $prefix)
{
	if ($key%2 == 0) {
	    $item = $prefix . $item;
	}
}
  • Like 1
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.