0 0 0

wordpress文章评论插件完整代码怎么写?

admin
1月前 659

前言

为了编写一个简单的 WordPress 文章评论插件,以下是一个基本的示例代码,完美支持 PHP 8.0 版本。

完整代码

1、创建一个名为 comment-plugin.php 的插件文件,将以下代码复制粘贴到该文件中:

<?php
/*
Plugin Name: 文章评论插件
Description: 添加自定义评论框和样式
Version: 1.0
Author: 您的姓名
*/

// Enqueue scripts and styles
function comment_plugin_scripts() {
    wp_enqueue_style('comment-plugin-style', plugin_dir_url(__FILE__) . 'style.css');
}
add_action('wp_enqueue_scripts', 'comment_plugin_scripts');

// Custom comment form
function custom_comment_form($fields) {
    $commenter = wp_get_current_commenter();
    $req = get_option('require_name_email');
    $aria_req = ($req ? " aria-required='true'" : '');

    $fields['author'] = '<p class="comment-form-author">' .
        '<label for="author">' . __( '姓名', 'domain' ) . ($req ? '<span class="required">*</span>' : '') . '</label> ' .
        '<input id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . ' /></p>';

    $fields['email'] = '<p class="comment-form-email">' .
        '<label for="email">' . __( '邮箱', 'domain' ) . ($req ? '<span class="required">*</span>' : '') . '</label> ' .
        '<input id="email" name="email" type="email" value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . ' /></p>';

    return $fields;
}
add_filter('comment_form_default_fields', 'custom_comment_form');

2、创建一个名为 style.css 的样式文件,用于定义评论框的样式。

3、将这些文件一起打包,并上传到您的 WordPress 插件目录中。

4、激活插件后,您应该会看到自定义的评论框样式。您可以根据需要对样式和评论框的字段进行定制。

请注意,这只是一个简单的示例,如果您需要更多的功能或更复杂的评论定制,可能需要进一步的开发和调整。

最新回复 (0)

    暂无评论

请先登录后发表评论!

返回
请先登录后发表评论!