Postun altına ve üstüne banner yerleştirmek için kodu tam olarak nereye koymam gerekiyor.

<?if (preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])){die();}?>
<?php

if($posts[0]->post_type=='news'){
include('single_news_t.php');
}
elseif($posts[0]->post_type=='attachment'){
include('single_attach_t.php');
}
elseif($posts[0]->post_type=='series'){
include('single_series_t.php');
}
elseif($posts[0]->post_type=='episodes'){
include('single_episodes_t.php');
}else{
$video_single_file = ayd_getmeta($post->ID, 'content_single_file', true);
if($video_single_file==2)
{
include('single_video_v.php');
}else{
if($ss['standart_single']==2){
include('single_video_v.php');
}else{
include('single_video_t.php');
}

}
}
 ?>