11 lines
227 B
PHP
11 lines
227 B
PHP
<?php
|
|
|
|
apply_filters( 'comment_form_fields', 'matt_comments_fields' );
|
|
|
|
function matt_comments_fields($fields) {
|
|
$fields['author-uri'] = "<input type='text' name='author-uri' placeholder='https://mysupersite.com' />";
|
|
}
|
|
|
|
|
|
|