Created
August 21, 2017 22:14
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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