我有这个代码:
function add_comment_fields($fields) {
$fields['options'] = '<p class="comment-form-options"><label for="option">' . __( 'Choose' ) . '</label>' .
'<input id="first" name="category" type="radio" value="' . get_post_meta($post->ID, 'agree', true); .'" />'.
'<input id="second" name="category" type="radio" value="" />FLASH</p>';
return $fields;
}
但不工作,我得到这个输出:Parse error: syntax error, unexpected '.'
出了什么问题?