iozsaydi adlı üyeden alıntı: mesajı görüntüle
comments.php ye sunu ekleyip denermisiniz?

<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div>
Yok Hocam hiçbir fayda etmedi.

Arayışım devam ediyor.
Bu konu arayış içinde olan herkese faydalı olacaktır.

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 12:09:02 -->-> Daha önceki mesaj 12:00:45 --

Şöyle bir eklenti buldum arkadaşlar.
Tek sayfa "admin_comment_reply.php" olan
ama eklentiyi aktif etmeme rağmen çalışmadı.

Kodcu arkadaşlar bakarlarsa belki birşey çıkartabiliriz.

<?php
/*
Plugin Name: Admin Panel Comment Reply
Plugin URI: http://digitalramble.com/admin-panel-comment-reply-plugin/
Description: Modifies the comment page in the admin panel to include a direct "Reply to Comment" link among the options for each comment.  This eliminates the need to page through the post, down the existing comments, to the end, in order to post a reply.  
Author: Cindy Moore
Version: 0.1 beta
Author URI: http://digitalramble.com/
*/

/* Notes: Idea for plugin comes from Lorelle on Wordpress (http://lorelle.wordpress.com/2007/03/07/wanted-wordpress-plugins-for-me/).  The plugin itself is a pretty straightfoward adaption of the Commenter Spy plugin by Daniel Gattermann at  http://cinnamonthoughts.org/wordpress/commenter-spy/. 
Further development: create an inline textarea that grabs the contents and shoots into the reply db...need to really poke around to see how comments are  handled first; this is quick and dirty, but leaves the problem of backing up to return to comment page for mgmt.  (At the moment, use the reply link to open in new tab; which can be closed after reply is sent...)
*/

/*
Change log:
none yet
*/

/*
  Copyright 2007 Cindy Moore (http://digitalramble.com/contact-me/)
  Licensed under the terms of the GPL version 2, 
  see: http://www.gnu.org/licenses/gpl.txt
  Provided without warranty, inluding any implied warrant of 
  merchantability or fitness for purpose.
*/
/* 
Türkçe Çeviri : Gürkan OLUÇ
URl : http://www.grkn.net
*/




/* first of all, we need to be certain of what exactly the name of the 
anchor we want is on the comment reply page.  The actual name can change 
around at the whim of whoever designed the theme that's in use, so drop an
invisible anchor with a known name next to any comment form */
function add_admin_comment_reply_anchor() 
{
	echo '<a name="admin_comment_reply_anchor"></a>';
}
add_action('comment_form', 'add_admin_comment_reply_anchor');

/*
Sets up the View Post URL search string
*/
function adminCommentReplyModifyViewPostURLs() 
{
	// _e writes to screen which is unsuitable here
	// reference: http://codex.wordpress.org/Translating_WordPress#Localization_Technology
	$admincommentreply = __('Yoruma Cevap Yaz');
	$eadmincommentreply = str_replace('/', '\/', preg_quote($admincommentreply));
	$admincommenttext = __('View Post');
	$eadmincommenttext = str_replace('/', '\/', preg_quote($admincommenttext));
	$ViewPostBaseURLEscaped = "(<a[ \\n\\r]*href=\"([^\"]*)\"([^>]*)>$eadmincommenttext<\/a>)";
?>

<script type="text/javascript">
//<![CDATA[

	var links;
	links = document.getElementsByTagName('p');
	for (var i = 0; i < links.length; i++) {
		var curr;
		curr = links[i];
		curr.innerHTML = curr.innerHTML.replace(/<?php echo $ViewPostBaseURLEscaped; ?>/, "$1 | <a  href=\"$2#admin_comment_reply_anchor\" $3><?php echo $eadmincommentreply; ?></a>");
	}

//]]>
</script>

<?php

}


/* activate only on correct page */
if (basename($_SERVER['SCRIPT_FILENAME']) === 'edit-comments.php')
{
	add_action('admin_footer', 'adminCommentReplyModifyViewPostURLs');
}


?>