<?php
$items = [
[
'author' => 'Stephen King',
'title' => 'The Thing',
'year' => 1979
],
/* Based on:
- http://stephen.io/mediaqueries
- https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ */
/* iPhone X in portrait & landscape */ @media only screen and (min-width : 375px) and (max-width : 812px)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ignore everything in the root except the "wp-content" directory. | |
!wp-content/ | |
# ignore everything in the "wp-content" directory, except: | |
# "mu-plugins", "plugins", "themes" directory | |
wp-content/* | |
!wp-content/mu-plugins/ | |
!wp-content/plugins/ | |
!wp-content/themes/ |