У меня есть google adsense скрипт, который я могу разместить в разных позициях на моей странице.
У меня также есть тело текст, где описание каждого post
есть, и я хочу знать, как я могу добавить сценарий AdSense динамически в основной текст моих сообщений?( Google предложил разместить его после второго абзаца ).
Я использую laravel
, и так я получаю часть своего тела от каждого сообщения
{!! $post->body !!}
Пример кода Google AdSense:
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-6565454545454774"
data-ad-slot="548855465655"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
Есть идеи?
Обновление
single post function
//single post
public function single($slug)
{
$post = Post::where('slug', $slug)->where('publish', '=', 'y')->firstOrFail();
$post->addPageView();
$previous = Post::where('slug', '<', $post->slug)->max('slug');
$next = Post::where('slug', '>', $post->slug)->min('slug');
$products = Product::all()->where('status', 'enable')->random(3);
$categories = PostCategory::all();
$settings = Setting::all();
$author = AuthorInfo::where('user_id', $post->user->id)->first();
return view('front.singlepost', compact('post', 'previous', 'next', 'products','categories', 'settings','author'));
}