编辑 WordPress 评论表单(只需在文本输入中添加一个类)
要在 WordPress 评论表单中添加一个类,可以使用以下方法:
comment_form
钩子函数:在你的主题的 functions.php
文件中,添加以下代码:
function add_class_to_comment_form($fields) {
$fields['comment_field']['input_class'] = 'your-class-name';
return $fields;
}
add_filter('comment_form_default_fields', 'add_class_to_comment_form');
将 your-class-name
替换为你想要添加的类名。这将在评论表单的文本输入中添加指定的类。
如果你不想在 PHP 中修改代码,可以使用 JavaScript 来添加类。在你的主题的 functions.php
文件中,添加以下代码:
function add_class_to_comment_form_js() {
echo<script>
document.addEventListener("DOMContentLoaded", function() {
var commentForm = document.querySelector("#commentform");
if (commentForm) {
var commentField = commentForm.querySelector("#comment");
if (commentField) {
commentField.classList.add("your-class-name");
}
}
});
</script>';
}
add_action('wp_head', 'add_class_to_comment_form_js');
将 your-class-name
替换为你想要添加的类名。这将在评论表单的文本输入中添加指定的类。
请注意,这些方法可能会在不同的主题和插件之间产生冲突,因此请确保在使用之前进行充分的测试。
领取专属 10元无门槛券
手把手带您无忧上云