小技巧:在wordpress仪表盘中双击评论内容可编辑评论
- 时间:2020-05-22 15:47:15
- 分类:网络文摘
- 阅读:147 次
在wordpress的仪表盘中,如果想要编辑某个评论,通常需要点击评论下方的编辑按钮方可实现。但很多人可能不知道,双击评论内容就可以对该评论进行编辑了。这个wordpress技巧虽然用处不大,但它从侧面告诉了我们wordpress的博大,既便是天天使用,也还有许多我们不了解的地方。

当然,如果你不喜欢这个功能,只要添加下面的代码到wordpress主题的functions.php文件中,就可以去掉此功能。
- <?php
- /*
- * Plugin Name: Remove Double-Click to Edit for Comments
- * Description: Disables the double-click to edit action for comments
- * Author: Pippin Williamson
- * Version: 1.0
- */
- class Remove_Double_Click_To_Edit {
- public function __construct() {
- add_action( 'admin_footer', array( $this, 'javascript' ) );
- }
- public function javascript() {
- global $pagenow;
- if( 'edit-comments.php' != $pagenow ) {
- return;
- }
- ?>
- <script>
- (function($){
- $('tr.comment').each(function() {
- $(this).find('a.vim-q').each(function() {
- $(this).removeClass('vim-q');
- });
- });
- }(jQuery));
- </script>
- <?php
- }
- }
- new Remove_Double_Click_To_Edit;
原文:http://www.ludou.org/wordpress-double-click-can-edit-comment.html
推荐阅读:Become an Exceptional Writer with Udemy’s “Writing with Flair” C Seven Ways Of Avoiding Summer Brain Drain At Work How to Prevent Commiting to master/develop branch by Accidents u How to Construct Binary Search Tree from Preorder Traversal? (C+ How to Compute the Number of Pawns-Captures for Rook in Chess? Build Your First Node.JS Unikernel with OPS The Intersection Algorithm of Two Arrays using Hash Maps in C++/ What Businesses Would Be Like if Web Hosting Didn’t Exist? How to Find the Dominant Index in Array (Largest Number At Least K Closest Points to Origin Algorithm by using Priority Queues in
- 评论列表
-
- 添加评论