Skip to content

Instantly share code, notes, and snippets.

@kubosho
Created September 15, 2012 15:11
Show Gist options
  • Save kubosho/3728405 to your computer and use it in GitHub Desktop.
Save kubosho/3728405 to your computer and use it in GitHub Desktop.
WordPressのコメントフォームやコメント欄周りのstyleをまとめてみた
- php wp_list_comments();
- php comment_form();
とテンプレートに書いて、出力されるHTMLのclassとidをまとめてみた。
/* #! scss */
li.comment {
.comment-body {
.comment-author.vcard {
.avatar.photo {
}
.fn {
.url {
}
}
.says {
}
}
.comment-meta.commentmetadata {
a {
}
}
p {
}
.reply {
.comment-reply-link {
}
}
}
.children {
.comment.byuser.bypostauthor {
.comment-body {
.comment-author.vcard {
.avatar.photo {
}
.fn {
.url {
}
}
.says {
}
}
.comment-meta.commentmetadata {
a {
}
}
p {
}
.reply {
.comment-reply-link {
}
}
}
}
.odd {
}
.even {
}
.parent {
}
.depth-1 {
}
.depth-2 {
}
.depth-3 {
}
.depth-4 {
}
.depth-5 {
}
}
}
#respond {
#reply-title {
small {
#cancel-comment-reply-link {
}
}
}
#commentform {
.comment-notes {
.required {
}
}
.comment-form-email {
label {
}
.required {
}
#email {
}
}
.comment-form-url {
label {
}
#url {
}
}
.comment-form-comment {
label {
}
#comment {
}
}
#submit {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment