Skip to content

Commit

Permalink
readme.txt added changes made
Browse files Browse the repository at this point in the history
  • Loading branch information
kniebremser committed Jul 8, 2019
1 parent 63a9aa2 commit e3c2977
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<div id="paginav">

<?phP
echo '<ul><li class="paginav-extend">' . __( 'Comment Pages', 'comicpress' ) . '</li>' . $pagelinks . '</ul>';
echo '<ul><li class="paginav-extend">' . esc_html__( 'Comment Pages', 'comicpress' ) . '</li>' . $pagelinks . '</ul>';
?>

</div>
Expand Down Expand Up @@ -152,7 +152,7 @@
$fields = array(
'author' => '<p class="comment-form-author">' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" />' . ' <label for="author"><small>' . __( '*NAME', 'comicpress' ) . '</small></label></p>',
'email' => '<p class="comment-form-email">' . '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" /> <label for="email">' . __( '*EMAIL', 'comicpress' ) . '<small> &mdash; <a href="https://gravatar.com" target="_blank" rel="noopener noreferrer">' . __( 'Get a Gravatar', 'comicpress' ) . '</a></small></label></p>',
'url' => '<p class="comment-form-url">' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /> <label for="url">' . __( 'Website URL', 'comicpress' ) . '</label></p>'
'url' => '<p class="comment-form-url">' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /> <label for="url">' . __( 'Website URL', 'comicpress' ) . '</label></p>',
);
$args = array(
'fields' => apply_filters( 'comment_form_default_fields', $fields ),
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ WordPress: 4.6
PHP: 5.4

== Changelog ==

= 4.X =
* changed: Symbols for search button (&raquo;) and image area (&lsaquo; and &rsaquo; are now customizable via language file
* removed Google+ Service was discontinued
* under the hood: Code optimizations according to WPCS

= 4.4 =
* Compliance check for 4.6 of Wordpress
* Probably breadcrumb fix for property error when trying to retrieve $parent_id
Expand Down Expand Up @@ -89,7 +95,7 @@ PHP: 5.4
* adjustable site width & sidebars in the customizer
* zappbar support for responsive, mobile friendly comicpress
* added layout options to the costumizer
* added locations taxonomy template, for comic easel, for custom location pages
* added locations taxonomy template, for comic easel, for custom location pages
* added new CSS requirements for theme review team for screen readers
* added theme_support('title_tag') per requirements of theme review team
* re-added Post/Comic "Moods" for github version
Expand Down

0 comments on commit e3c2977

Please sign in to comment.