{"id":669,"date":"2024-10-22T12:43:42","date_gmt":"2024-10-22T04:43:42","guid":{"rendered":"https:\/\/www.cuishaofeng.com\/?p=669"},"modified":"2024-10-22T14:33:35","modified_gmt":"2024-10-22T06:33:35","slug":"wordpress-%e9%99%90%e5%88%b6%e4%b8%80%e6%ae%b5%e6%97%b6%e9%97%b4%e5%86%85%e7%94%a8%e6%88%b7%e7%9a%84%e6%9c%80%e5%a4%a7%e8%af%84%e8%ae%ba%e6%95%b0%e9%87%8f","status":"publish","type":"post","link":"https:\/\/www.cuishaofeng.com\/?p=669","title":{"rendered":"WordPress \u9650\u5236\u4e00\u6bb5\u65f6\u95f4\u5185\u7528\u6237\u7684\u6700\u5927\u8bc4\u8bba\u6570\u91cf"},"content":{"rendered":"<div id=\"core-ai-summary-tool\"><\/div>\n<p>\u5982\u679c\u4e00\u6bb5\u65f6\u95f4\u5185\u7528\u6237\u6709\u5927\u91cf\u7684\u8bc4\u8bba\uff0c\u57fa\u672c\u53ef\u4ee5\u8ba4\u4e3a\u662f\u5783\u573e\u8bc4\u8bba\uff0c\u4f7f\u7528\u00a0wordpress\u00a0\u5bf9\u5176\u8fdb\u884c\u9650\u5236\uff0c\u53ef\u4ee5\u5c06\u4ee5\u4e0b\u4ee3\u7801\u6dfb\u52a0\u5230 function.php\u3002<\/p>\n\n\n\n<p>10 \u5206\u949f\u5185\u6700\u591a\u8bc4\u8bba 10\u6761\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ 10 \u5206\u949f\u8bc4\u8bba\u4e0d\u80fd\u5927\u4e8e 10 \u6761\nfunction limit_user_comments_per_ten_minutes( $comment_data ) {\n    global $wpdb;\n \n    $current_user = wp_get_current_user();\n    $user_id = $current_user->ID;\n \n    $count = $wpdb->get_var( $wpdb->prepare(\n        \"SELECT COUNT(*) FROM $wpdb->comments\n        WHERE user_id = %d\n        AND comment_date > DATE_SUB(NOW(), INTERVAL 10 MINUTE)\",\n        $user_id\n    ) );\n \n    if ( $count >= 10 ) {\n        wp_die( '\u60a8\u5df2\u7ecf\u8fbe\u5230\u4e8610\u5206\u949f\u5185\u8bc4\u8bba\u7684\u6700\u5927\u9650\u5236\u3002' );\n    }\n \n    return $comment_data;\n}\n \nadd_filter( 'preprocess_comment', 'limit_user_comments_per_ten_minutes' );\n\n<\/code><\/pre>\n\n\n\n<p>\u4e00\u5c0f\u65f6\u5185\u6700\u591a\u8bc4\u8bba 10\u6761\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function limit_user_comments_per_hour( $comment_data ) {\n    global $wpdb;\n \n    $current_user = wp_get_current_user();\n    $user_id = $current_user->ID;\n \n    $count = $wpdb->get_var( $wpdb->prepare(\n        \"SELECT COUNT(*) FROM $wpdb->comments\n        WHERE comment_author_email = %s\n        AND comment_date > DATE_SUB(NOW(), INTERVAL 1 HOUR)\",\n        $comment_data&#91;'comment_author_email'],\n        $_SERVER&#91;'REMOTE_ADDR']\n    ) );\n \n    if ( $count >= 20 ) {\n        wp_die( '\u60a8\u5df2\u8fbe\u5230\u6bcf\u5c0f\u65f6\u8bc4\u8bba\u7684\u6700\u5927\u9650\u5236\u3002' );\n    }\n \n    return $comment_data;\n}\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u5982\u679c\u4e00\u6bb5\u65f6\u95f4\u5185\u7528\u6237\u6709\u5927\u91cf\u7684\u8bc4\u8bba\uff0c\u57fa\u672c\u53ef\u4ee5\u8ba4\u4e3a\u662f\u5783\u573e\u8bc4\u8bba\uff0c\u4f7f\u7528\u00a0wordpress\u00a0\u5bf9\u5176\u8fdb\u884c\u9650\u5236\uff0c\u53ef\u4ee5\u5c06\u4ee5\u4e0b\u4ee3\u7801\u6dfb\u52a0\u5230 function.php\u3002 10 \u5206\u949f\u5185\u6700\u591a\u8bc4\u8bba 10\u6761\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a \u4e00\u5c0f\u65f6\u5185\u6700\u591a\u8bc4\u8bba 10\u6761\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11,1],"tags":[45],"topic":[],"_links":{"self":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts\/669"}],"collection":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=669"}],"version-history":[{"count":2,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts\/669\/revisions"}],"predecessor-version":[{"id":671,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=\/wp\/v2\/posts\/669\/revisions\/671"}],"wp:attachment":[{"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=669"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=669"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=669"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.cuishaofeng.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftopic&post=669"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}