You appear to be a bot. Output may be restricted
Description
Add attributes for single comment element.
Usage
$array = genesis_attributes_comment( $attributes );
Parameters
- $attributes
- ( array ) required – Existing attributes for single comment element.
Returns
array Amended attributes for single comment element.
Source
File name: genesis/lib/functions/markup.php
Lines:
1 to 8 of 8
function genesis_attributes_comment( $attributes ) { $attributes['class'] = ''; $attributes['id'] = 'article-comment-' . get_comment_ID(); return $attributes; }