├── .gitignore ├── admin ├── class-manage-testimonials.php ├── class-settings.php ├── class-testimonial-edit.php └── functions-admin.php ├── changelog.md ├── contributing.md ├── gulpfile.js ├── inc ├── functions-capabilities.php ├── functions-filters.php ├── functions-general.php ├── functions-meta.php ├── functions-options.php ├── functions-post-types.php ├── functions-rewrite.php ├── functions-shortcodes.php ├── functions-taxonomies.php ├── functions-testimonial.php ├── template-general.php └── template-testimonial.php ├── js ├── edit-testimonial.js └── edit-testimonial.min.js ├── lang └── toot.pot ├── license.md ├── package.json ├── readme.md ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── toot.php └── uninstall.php /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | _assets/ 3 | -------------------------------------------------------------------------------- /admin/class-manage-testimonials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/admin/class-manage-testimonials.php -------------------------------------------------------------------------------- /admin/class-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/admin/class-settings.php -------------------------------------------------------------------------------- /admin/class-testimonial-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/admin/class-testimonial-edit.php -------------------------------------------------------------------------------- /admin/functions-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/admin/functions-admin.php -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [1.0.0] - 2017-12-20 4 | 5 | ### Added 6 | 7 | * Plugin launch. Everything's new! 8 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/contributing.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/gulpfile.js -------------------------------------------------------------------------------- /inc/functions-capabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-capabilities.php -------------------------------------------------------------------------------- /inc/functions-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-filters.php -------------------------------------------------------------------------------- /inc/functions-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-general.php -------------------------------------------------------------------------------- /inc/functions-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-meta.php -------------------------------------------------------------------------------- /inc/functions-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-options.php -------------------------------------------------------------------------------- /inc/functions-post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-post-types.php -------------------------------------------------------------------------------- /inc/functions-rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-rewrite.php -------------------------------------------------------------------------------- /inc/functions-shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-shortcodes.php -------------------------------------------------------------------------------- /inc/functions-taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-taxonomies.php -------------------------------------------------------------------------------- /inc/functions-testimonial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/functions-testimonial.php -------------------------------------------------------------------------------- /inc/template-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/template-general.php -------------------------------------------------------------------------------- /inc/template-testimonial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/inc/template-testimonial.php -------------------------------------------------------------------------------- /js/edit-testimonial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/js/edit-testimonial.js -------------------------------------------------------------------------------- /js/edit-testimonial.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/js/edit-testimonial.min.js -------------------------------------------------------------------------------- /lang/toot.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/lang/toot.pot -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/screenshot-3.png -------------------------------------------------------------------------------- /screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/screenshot-4.png -------------------------------------------------------------------------------- /toot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/toot.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/toot/HEAD/uninstall.php --------------------------------------------------------------------------------