39 of the best JavaScript libraries and frameworks to try in 2020
WordPress Cheat Sheet
Basic Template Files
File Name | Description |
---|---|
style.css | style sheet file |
index.php | home page file |
header.php | header content file |
single.php | single post page file |
archive.php | archive/category file |
searchform.php | search form file |
search.php | search content file |
404.php | error page file |
comments.php | comments template file |
footer.php | footer content file |
sidebar.php | sidebar content file |
page.php | single page file |
front-page.php | latest posts or static page |
tag.php | display tags in archive format |
category.php | display categories in archive format |
HTML CSS Snippets
Adding page breaks to your web pages
<html>
<body>
This is the text for page #1.
<p style="page-break-before: always">
Page #2...
</p>
<p style="page-break-before: always">
Page #3...
</p>
</body>
</html>