jp3cki / yii2-googleadsense

用于显示Google AdSense广告的扩展。

安装次数: 3,107

依赖关系: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 2

开放问题: 0

类型:yii2-extension

v2.0.0 2015-10-15 13:09 UTC

This package is auto-updated.

Last update: 2024-09-19 05:58:46 UTC


README

用于显示Google AdSense广告的扩展。

安装

安装此扩展的首选方式是通过composer

可以运行

php composer.phar require --prefer-dist jp3cki/yii2-googleadsense "*"

或者将以下内容添加到您的composer.json文件的require部分:

"jp3cki/yii2-googleadsense": "*"

to the require section of your composer.json file.

使用方法

一旦扩展安装完成

  1. 将以下参数添加到您的params.php文件中,以指定您的AdSense客户端ID: 'googleAdSenseClient' => ''
  2. 可选地,通过在您的params-local.php文件中添加以下参数来禁用开发环境中的广告并显示占位符:'googleAdSenseEnable' => false
  3. 按照以下方式在您希望显示广告的地方使用小部件
	'slot' => '<the ID of the ad slot>',
	'style' => '<optional style information>',
	'responsive' => '<optional value specifying whether the ad unit is responsive; defaults to false>'
]); ?>```