Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save atiq-cs/bfb7ae1a984b24d695113e41039fd80a to your computer and use it in GitHub Desktop.
Save atiq-cs/bfb7ae1a984b24d695113e41039fd80a to your computer and use it in GitHub Desktop.
How to install editable comment plugin on wordpress blog, last tested 6th July, 2010
How to install editable comment plugin?
- Copy the editable comment plugin dir to plugin dir
http://wordpress.org/extend/plugins/editable-comments/
- Activate plugin from admin account
- Edit this file, "WORDPRESSINSTALLDIR\wp-includes\comment-template.php"
- After line
<?php comment_text() ?>
Please Add,
<?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::edit('Edit'); } ?>
<?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::delete('Delete'); } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment