Right now my 'reply' line looks like this:
June 16, 2010 at 8:12 AM | Permalink | Edit | Reply Report comment
Obviously the Edit is because I'm logged in as admin, but you see how I use | to separate things?
Other than hard coding this in, is there a way I can tweak this in my functions.php?
http://wordpress.org/extend/plugins/safe-report-comments/
Thorsten Ott
Member
Posted 1 year ago #
As mentioned in http://wordpress.org/extend/plugins/safe-report-comments/other_notes/ this should do the job
// change link layout to have a pipe prepended
add_filter( 'safe_report_comments_flagging_link', 'adjust_flagging_link' );
function adjust_flagging_link( $link ) {
return ' | ' . $link;
}
Reading? So overrated! Thank you for tolerating a brain fart :)
(FYI, this works so far on WP 3.0 Multi-Site. I put it on a live site today.)
Thorsten Ott
Member
Posted 1 year ago #
That's what it's made for :)