├── README.md ├── class-custom-css-per-post-postmeta-setting.php ├── css └── customize-controls.css ├── index.php └── js ├── customize-controls.js └── edit-post.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericandrewlewis/wp-custom-css-per-post/HEAD/README.md -------------------------------------------------------------------------------- /class-custom-css-per-post-postmeta-setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericandrewlewis/wp-custom-css-per-post/HEAD/class-custom-css-per-post-postmeta-setting.php -------------------------------------------------------------------------------- /css/customize-controls.css: -------------------------------------------------------------------------------- 1 | #save { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericandrewlewis/wp-custom-css-per-post/HEAD/index.php -------------------------------------------------------------------------------- /js/customize-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericandrewlewis/wp-custom-css-per-post/HEAD/js/customize-controls.js -------------------------------------------------------------------------------- /js/edit-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericandrewlewis/wp-custom-css-per-post/HEAD/js/edit-post.js --------------------------------------------------------------------------------