Cms/mediawiki/広告挿入
提供: 初心者エンジニアの簡易メモ
記事上に広告を入れる
- skins/Vector/VectorTemplate.php
<?php $this->html( 'prebodyhtml' ) ?>
<div id="bodyContent" class="mw-body-content">
<!-- ここに広告を入れる -->
<?php
if ( $this->data['isarticle'] ) {
記事下に広告を入れる
- skins/Vector/VectorTemplate.php
<div class="visualClear"></div>
<?php $this->html( 'debughtml' ); ?>
<!-- ここに広告を入れる -->
</div>
ユーザによって広告を非表示に
<?php if ($this->get('username') != 'Username1'): ?>
<!-- ここに広告を入れる -->
<?php endif; ?>
