Bu alanları yok etmek?

duhalala

Öğrenci
Katılım
9 Aralık 2011
Mesajlar
27
Reaksiyon puanı
0
Puanları
0
mesajın altında

Kod:
[COLOR=#888888][FONT=Helvetica Neue][URL="http://emrahguler.com.tr/wordpress/author/admin/"]admin[/URL][/FONT][/COLOR][COLOR=#888888][FONT=Helvetica Neue]tarafından[/FONT][/COLOR][URL="http://emrahguler.com.tr/wordpress/2011/12/08/candan-abla-video/"]08 Aralık 2011[/URL][COLOR=#888888][FONT=Helvetica Neue]tarihinde gönderildi[/FONT][/COLOR]

yine altındaki

Kod:
[COLOR=#888888][FONT=Helvetica Neue][URL="http://emrahguler.com.tr/wordpress/category/genel/"]Genel[/URL] kategorisine gönderildi    [/FONT][/COLOR][COLOR=#888888][FONT=Helvetica Neue]|[/FONT][/COLOR][COLOR=#888888][FONT=Helvetica Neue][URL="http://emrahguler.com.tr/wordpress/2011/12/08/candan-abla-video/#respond"]Yorum bırakın[/URL][/FONT][/COLOR][COLOR=#888888][FONT=Helvetica Neue]|[/FONT][/COLOR]

bulunan bölümleri yok etmek istiyorum acaba bu mümkün müdür? yani sitenin bir blog tarzı değil sadece yazılan bilgilerin olduğu içerik görünsün onun haricinde bunlar görünmesin istiyorum nasıl mümkündür acaba?
 

whoobay

Öğrenci
Katılım
24 Mayıs 2011
Mesajlar
63
Reaksiyon puanı
0
Puanları
0
tema klasöründeki index.php ve page.php dosyalarında düzenleme yapman gerekiyor.
 

duhalala

Öğrenci
Katılım
9 Aralık 2011
Mesajlar
27
Reaksiyon puanı
0
Puanları
0
page.php

get_header(); ?>


<div id="container">
<div id="content" role="main">


<?php
/* Run the loop to output the page.
* If you want to overload this in a child theme then include a file
* called loop-page.php and that will be used instead.
*/
get_template_part( 'loop', 'page' );
?>


</div><!-- #content -->
</div><!-- #container -->


<?php get_sidebar(); ?>
<?php get_footer(); ?>

index.php

get_header(); ?>


<div id="container">
<div id="content" role="main">


<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
get_template_part( 'loop', 'index' );
?>
</div><!-- #content -->
</div><!-- #container -->


<?php get_sidebar(); ?>
<?php get_footer(); ?>

ne şekilde değişiklik yapmam gerekiyor acaba?
 

whoobay

Öğrenci
Katılım
24 Mayıs 2011
Mesajlar
63
Reaksiyon puanı
0
Puanları
0
tema adı nedir? bu temada bu dosyalar ile değişiklik yapılmıyor demekki. Başka dosyalarda düzenleme gerekiyor.
 

duhalala

Öğrenci
Katılım
9 Aralık 2011
Mesajlar
27
Reaksiyon puanı
0
Puanları
0
standart temaya bakmıştım o yüzden olabilir.

bu başka bir temanın page.php si

Kod:
<?php get_header(); ?>
<div id="content">
	<div class="spacer"></div>
<?php  
	if(have_posts()) : while (have_posts()) : the_post(); 
?>		
			<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
				<div class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></div>
				<div class="entry">
					<?php  the_content('more...'); ?><div class="clear"></div>
					<?php  wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
				</div>
			</div>
		<?php endwhile; ?>
	<?php endif; ?>
	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer();?>

index.php

Kod:
<?php get_header(); ?><div id="content">
<?php 
	if ( is_home() ) echo '<div class="spacer">&nbsp;</div>';


	if (have_posts()) :
		$post = $posts[0]; // Hack. Set $post so that the_date() works.
		if(is_category()){
			echo '<h1 class="archivetitle">Archive for the Category &raquo;'.single_cat_title('',FALSE).' &laquo;</h1>';
		}elseif(is_day()){
			echo '<h1 class="archivetitle">Archive for &raquo; '.get_the_time('F jS, Y').'&laquo;</h1>';
		}elseif(is_month()){
			echo '<h1 class="archivetitle">Archive for &raquo; '.get_the_time('F, Y').' &laquo;</h1>';
		}elseif(is_year()){
			echo '<h1 class="archivetitle">Archive for &raquo; '.get_the_time('Y').' &laquo;</h1>';
		} elseif(is_search()){
			echo '<h1 class="archivetitle">Search Results</h1>';
		}elseif(is_author()){
			echo '<h1 class="archivetitle">Author Archive</h1>';
		}elseif(isset($_GET['paged']) && !empty($_GET['paged'])){ // If this is a paged archive
			echo '<h1 class="archivetitle">Blog Archives</h1>';
		}elseif(is_tag()){ //
			echo '<h1 class="archivetitle">Tag-Archive for &raquo; '.single_tag_title('',FALSE).' &laquo; </h1>';
		}
		
		while (have_posts()) : the_post(); ?>
			<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
				<div class="date">
					<div class="date_d"><?php the_time('d');?></div>
					<div class="date_m"><?php the_time('M');?></div>
					<div class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></div>
					<div class="author"><?php the_author_posts_link('nickname'); ?> <?php edit_post_link(' &raquo; Edit &laquo;','|',''); ?></div>
				</div>
				<div class="entry">
					<?php if (is_search()){
							the_excerpt();
						}else{
							the_content('more...'); 
						}
					?>
				</div>
				<div class="clear"></div>
				<div class="info">
					<span class="category">Category: <?php the_category(', ') ?></span>
					<?php the_tags('&nbsp;<span class="tags">Tags: ', ', ', '</span>'); ?>
					&nbsp;<span class="bubble"><?php comments_popup_link('Leave a Comment','One Comment', '% Comments', '','Comments off'); ?></span>
				</div>
			</div>
		<?php endwhile; ?>
		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
			<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
		</div>


	<?php else : ?>
		<h1>Not found</h1>
		<p class="sorry">"Sorry, but you are looking for something that isn't here. Try something else.</p>
	<?php endif; ?>




</div>
<?php get_sidebar(); ?>
<?php get_footer();?>
 

whoobay

Öğrenci
Katılım
24 Mayıs 2011
Mesajlar
63
Reaksiyon puanı
0
Puanları
0
Alttaki kod yazar ve tarihle alakalı kod.

bunların geçtigi satırları silmelisin.
Kod:
<div class="date"> 					<div class="date_d"><?php the_time('d');?></div> 					<div class="date_m"><?php the_time('M');?></div> 					<div class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></div> 					<div class="author"><?php the_author_posts_link('nickname'); ?> <?php edit_post_link(' &raquo; Edit &laquo;','|',''); ?></div> 				</div>

Alttaki kod ise kategori ve yorumla ilgili. bunların geçtigi satırları silmelisin.

Kod:
<div class="info"> 					<span class="category">Category: <?php the_category(', ') ?></span> 					<?php the_tags('&nbsp;<span class="tags">Tags: ', ', ', '</span>'); ?> 					&nbsp;<span class="bubble"><?php comments_popup_link('Leave a Comment','One Comment', '% Comments', '','Comments off'); ?></span> 				</div>
 

duhalala

Öğrenci
Katılım
9 Aralık 2011
Mesajlar
27
Reaksiyon puanı
0
Puanları
0
çok teşekkür ediyorum en kısa zamanda deneyip sonucu yazacağım çok sağolun.
 
Üst