Skip to content

Instantly share code, notes, and snippets.

@justinwhall
Created March 8, 2012 00:59
Show Gist options
  • Save justinwhall/1997684 to your computer and use it in GitHub Desktop.
Save justinwhall/1997684 to your computer and use it in GitHub Desktop.
PHP: Function WordPress Highlight Authour Comment
function author_highlight() {
global $comment;
if ($comment->user_id == get_the_author_meta('ID')) { echo "highlighted"; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment