我对meta field做了一些评论,它们工作得很好。
现在我需要将注释文本设置为无需。
我发现this solution 但不要为我工作。
add_action( \'pre_comment_on_post\', \'allow_empty_comment_text\' );
function allow_empty_comment_text( $text = \'\' )
{
if ( ! isset ( $_POST[\'comment\'] ) or \'\' === trim( $_POST[\'comment\'] ) )
{
$img = \'/* Process uploaded image here, create an <img> tag. */\'
$_POST[\'comment\'] = \'<img>\'; // use a real img tag here
}
}
请提供任何解决方案。