Skip to content

Instantly share code, notes, and snippets.

@az1979
Last active January 5, 2018 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save az1979/55c7f0dbf9813eaaabb54f341a7653e1 to your computer and use it in GitHub Desktop.
Save az1979/55c7f0dbf9813eaaabb54f341a7653e1 to your computer and use it in GitHub Desktop.
WordPress - 投稿日の代わりに更新日を表示する方法(日付操作) - Type.3
article time.published:before {
content: '投稿日: ';
}
article time.updated:not(.published) {
display: inline;
}
article time.updated:not(.published):before {
content: ' / 更新日: ';
}
article .byline:before {
content: ' / ';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment