İyinet'e Hoşgeldiniz!

Türkiye'nin En Eski Webmaster Forum'una Hemen Kayıt Olun!

Kayıt Ol!

Yokmu Yardımcı Olacak Birisi

Erkan1

0
İyinet Üyesi
Katılım
25 Ocak 2011
Mesajlar
160
Reaction score
0
Arkadaşlar Kuaza Haber Temasını Düzenlemeye Çalışıyorum Yazının içine Girdiğimizde Yorumu Gönder Butonu VAr Resimde Belirttim. Onu İngilizce Yapmak istiyorum NEreden Düzenleyeceğimi Bir Türlü Bulamadım Temayı Kullanamıyorum Bu Yüzden Yardımcı Olursanız Sevinirim...

attachment.php
 

TeyLor

0
İyinet Üyesi
Katılım
10 Aralık 2010
Mesajlar
229
Reaction score
1
img lerin icine bak belki orda resimde yazıyordur sil kendın yaz
 

Erkan1

0
İyinet Üyesi
Katılım
25 Ocak 2011
Mesajlar
160
Reaction score
0
Baktım Heryere Ama Yok Şimdi Tekrar Baktım. Tüm Dosyalardaki Resim Linklerinede Baktım Bulamadım:S
 

wordpresss

0
İyinet Üyesi
Katılım
3 Şubat 2011
Mesajlar
126
Reaction score
0
(comments.php) nin içinde Yorum diye aratırsan bulabilirsin
 

PetscHe

0
İyinet Üyesi
Katılım
26 Aralık 2010
Mesajlar
317
Reaction score
7
Konum
m€zar ba$I
daha once editlemistim ben bnu ama suan hangi dosya oldugunu hatirlayamiyorum ama kuaza turkce calisiyordu o yuzden temanin turkce isimde olan dosyalarini kontrol ediniz
 

Erkan1

0
İyinet Üyesi
Katılım
25 Ocak 2011
Mesajlar
160
Reaction score
0
Yok hocam bulamadım:S. Herşeyi düzenledim tamamen ingillizce yaptım temayı bi yorum yap butonunu yapamadım:/
comments dosyasınıda atıyım ekte bakın isterseniz..
PHP:
<?php

/**

 * @package WordPress

 * @subpackage Default_Theme

 */



// Do not delete these lines



	if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))

		die ('Please do not load this page directly. Thanks!');



	if ( post_password_required() ) { ?>

		<p id="commentNotification">passProtect</p>

	<?php

		return;

	}

?>



<!-- You can start editing here. -->



<?php if ( have_comments() ) : ?>

	<h3 id="comments"><?php comments_number('No comments', '1 comment', 'Write ' );?> comment <span class="respondEntryTitle">“<?php the_title(); ?>”</span></h3>



	<ol class="commentlist">

	<?php wp_list_comments(); ?>

	</ol>

	<div class="navigation">

		<div class="previous"><?php previous_comments_link() ?></div>

		<div class="next"><?php next_comments_link() ?></div>

		<div class="clear"></div>

	</div>

 <?php else : // this is displayed if there are no comments so far ?>



 <?php endif; ?>

	

	<?php if ('open' == $post->comment_status) : ?>

		<!-- If comments are open, but there are no comments. -->



	 <?php else : // comments are closed ?>

		<!-- If comments are closed. -->

		<p id="commentNotification">closed</p>

	

<?php endif; ?>



<?php if ('open' == $post->comment_status) : ?>



<?php if ( get_option('comment_registration') && !$user_ID ) : ?>

<p id="commentNotification"><cite>Log: <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">Login/a></cite></p>

<?php else : ?>



<h3 id="leaveComment"><?php comment_form_title( 'Write comment', 'Leave a Reply to %s' ); ?></h3>

<div id="respond">



<div class="cancel-comment-reply">

	<small><?php cancel_comment_reply_link(); ?></small>

</div>



<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">



<?php if ( $user_ID ) : ?>

<p><cite>Introduction Have you <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(); ?>">Make Out »</a></cite></p>

<?php else : ?>



<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />

<label for="author"><small>Name</small></label></p>



<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />

<label for="email"><small>mail</small></label></p>



<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />

<label for="url"><small>website</small></label></p>



<?php endif; ?>



<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->



<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>



<p><input name="submit" type="submit" id="submit" tabindex="5" value="" />

<?php comment_id_fields(); ?>

</p>

<?php do_action('comment_form', $post->ID); ?>

</form>

</div>

<?php endif; // If registration required and not logged in ?>



<?php endif; // if you delete this the sky will fall on your head ?>
 

tetal

1
İyinet Üyesi
Katılım
6 Şubat 2003
Mesajlar
3,776
Reaction score
20
Konum
Ordan, burdan..
PHP:
<?php 

/** 

 * @package WordPress 

 * @subpackage Default_Theme 

 */ 



// Do not delete these lines 



    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) 

        die ('Please do not load this page directly. Thanks!'); 



    if ( post_password_required() ) { ?> 

        <p id="commentNotification">passProtect</p> 

    <?php 

        return; 

    } 

?> 



<!-- You can start editing here. --> 



<?php if ( have_comments() ) : ?> 

    <h3 id="comments"><?php comments_number('No comments', '1 comment', 'Write ' );?> comment <span class="respondEntryTitle">“<?php the_title(); ?>”</span></h3> 



    <ol class="commentlist"> 

    <?php wp_list_comments(); ?> 

    </ol> 

    <div class="navigation"> 

        <div class="previous"><?php previous_comments_link() ?></div> 

        <div class="next"><?php next_comments_link() ?></div> 

        <div class="clear"></div> 

    </div> 

 <?php else : // this is displayed if there are no comments so far ?> 



 <?php endif; ?> 

     

    <?php if ('open' == $post->comment_status) : ?> 

        <!-- If comments are open, but there are no comments. --> 



     <?php else : // comments are closed ?> 

        <!-- If comments are closed. --> 

        <p id="commentNotification">closed</p> 

     

<?php endif; ?> 



<?php if ('open' == $post->comment_status) : ?> 



<?php if ( get_option('comment_registration') && !$user_ID ) : ?> 

<p id="commentNotification"><cite>Log: <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">Login/a></cite></p> 

<?php else : ?> 



<h3 id="leaveComment"><?php comment_form_title( 'Write comment', 'Leave a Reply to %s' ); ?></h3> 

<div id="respond"> 



<div class="cancel-comment-reply"> 

    <small><?php cancel_comment_reply_link(); ?></small> 

</div> 



<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 



<?php if ( $user_ID ) : ?> 

<p><cite>Introduction Have you <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(); ?>">Make Out »</a></cite></p> 

<?php else : ?> 



<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> 

<label for="author"><small>Name</small></label></p> 



<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /> 

<label for="email"><small>mail</small></label></p> 



<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> 

<label for="url"><small>website</small></label></p> 



<?php endif; ?> 



<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>--> 



<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p> 



<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> 

<?php comment_id_fields(); ?> 

</p> 

<?php do_action('comment_form', $post->ID); ?> 

</form> 

</div> 

<?php endif; // If registration required and not logged in ?> 



<?php endif; // if you delete this the sky will fall on your head ?>
yukardıkiyle kendininkini değiştir
 

Erkan1

0
İyinet Üyesi
Katılım
25 Ocak 2011
Mesajlar
160
Reaction score
0
tetal Hocam çok saol yardım için imageslerin içindeymiş pm olarak ilettiğin kısma baktım konu halloldu teşekkürler...
 

Türkiye’nin ilk webmaster forum sitesi iyinet.com'da forum üyeleri tarafından yapılan tüm paylaşımlardan; Türk Ceza Kanunu’nun 20. Maddesinin, 5651 Sayılı Kanununun 4. maddesinin 2. fıkrasına göre, paylaşım yapan üyeler sorumludur.

Backlink ve Tanıtım Yazısı için iletişime geçmek için Skype Adresimiz: .cid.1580508955483fe5

Üst