I completed my first WordPress theme. It is a very basic theme. After done with all the contents in the WordPress theme, I inserted all the divisions that need for styling. In general, the pages consist a common layout which is as below:
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| <body> <div id="wrapper"> <div id="header">Blog Title</div><!-- #header --> <div id="navmenu">Page List</div><!-- #navmenu --> <div id="main"> <!-- end header --> <div id="container"> <div id="content"> <div class="entry-title">Post Title</div><!-- .entry-title --> <div class="entry-content">Post</div><!-- .entry-content --> <div class="entry-meta">Meta Info</div><!-- .entry-meta --> <div id="comments"> <div id="comments-list">Comments</div><!-- #comments-list --> <div id="respond"> <div id="formcontainer">Reply Form</div><!-- #formcontainer --> </div><!-- #respond --> </div><!-- #comments --> </div><!-- #content --> </div><!-- #container --> <!-- begin sidebar --> <div id="sidebar">Sidebar</div><!-- #sidebar --> <!-- end sidebar --> <!-- begin footer --> </div><!-- #main --> <div id="footer"> </div><!-- #footer --> </div><!-- #wrapper --> </body>
|
References
No Comments
No comments yet.