Skip to content

Instantly share code, notes, and snippets.

@justintadlock
Last active July 5, 2023 18:37

Revisions

  1. justintadlock revised this gist Jul 5, 2023. No changes.
  2. justintadlock created this gist Jul 5, 2023.
    14 changes: 14 additions & 0 deletions ordered-3-col-grid.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    /* Set default to really high number for all posts. */
    .wp-block-post-template-is-layout-grid .wp-block-post {
    order: 999;
    }

    /* Set first post to "2" order. */
    .wp-block-post-template-is-layout-grid .wp-block-post:first-of-type {
    order: 2;
    }

    /* Set second post to "1" order. */
    .wp-block-post-template-is-layout-grid .wp-block-post:nth-of-type(2) {
    order: 1;
    }