sanalrisk adlı üyeden alıntı: mesajı görüntüle
Hocam şu kısmı iportal temanızdan tamamen kaldırmak istiyorum nerden kaldırmam gerekir

index.php de bulun ve silin
		<div class="galeri galeri-anasayfa">
			<div class="baslik">
				<h2>
					<a class="foto-a"><span class="icon-camera"></span>Foto Galeri</a>
					<a class="video-a"><span class="icon-facetime-video"></span></span>Video Galeri</a>
				</h2>
			</div>
			<ul class="foto">
			<?php 
				query_posts('cat='.$foto_kat.'&showposts=3');
				while ( have_posts() ) : the_post();
			?>
				<li>
					<a href="<?php the_permalink(); ?>"><?php resim(175,100); ?></a>
					<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
				</li>
			<?php endwhile;wp_reset_query(); ?>
			</ul>
			<ul class="video">
			<?php 
				query_posts('cat='.$video_kat.'&showposts=3');
				while ( have_posts() ) : the_post();
			?>
				<li>
					<a href="<?php the_permalink(); ?>"><?php resim(175,100); ?></a>
					<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
				</li>
			<?php endwhile;wp_reset_query(); ?>
			</ul>
		</div><!-- galeri foto -->