Skip to content

Instantly share code, notes, and snippets.

@PeteMall
Created September 9, 2011 18:16
Show Gist options
  • Save PeteMall/1206932 to your computer and use it in GitHub Desktop.
Save PeteMall/1206932 to your computer and use it in GitHub Desktop.
Show svn revision in the "Right Now" dashboard widget
<?php
function pm_right_now_svn_revision() {
if ( ! $svn = File( '.svn/entries' ) )
return;
echo "<p>SVN Revision: {$svn[3]}</p>";
}
add_action( 'rightnow_end', 'pm_right_now_svn_revision' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment