How to change Twentysixteen theme outside the WordPress core?
-
I modified Twentysixteen to meet my requirement. Most modifications I did with a child theme and some modifications with the theme customizer.
The comment area has 8 visible lines.
I reduced it to 4 lines in the file:
wp-includes/comment-template.php
as shown here:
old:
<!–
textarea id=”comment” name=”comment” cols=”45″ rows=”8″ maxlength=”65525″‘ . $required_attribute . ‘></textarea
–>
new:
<!–
textarea id=”comment” name=”comment” cols=”45″ rows=”4″ maxlength=”65525″‘ . $required_attribute . ‘></textarea
–>How can I handle it outside the core of WordPress?
FYI: I have a functions.php in my child theme.
Thx in advance for your hints.- This topic was modified 1 year, 11 months ago by .
- This topic was modified 1 year, 11 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘How to change Twentysixteen theme outside the WordPress core?’ is closed to new replies.