├── CHANGES.md ├── README.md ├── admin-only-jetpack.php ├── readme.txt ├── languages └── admin-only-jetpack.pot └── LICENSE /CHANGES.md: -------------------------------------------------------------------------------- 1 | #### [unreleased] 2 | 3 | #### 1.1.0 / 2021-07-07 4 | * add @10up GitHub Actions for WordPress SVN 5 | 6 | #### 1.0.1 / 2019-11-06 7 | * update `Requires at least` header in plugin file 8 | 9 | #### 1.0.0 / 2019-04-26 10 | * initial commit 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Admin Only Jetpack 2 | 3 | * Contributors: [Andy Fragen](https://github.com/afragen) 4 | * Tags: jetpack, hide, admin, menu 5 | * Requires at least: 4.9 6 | * Requires PHP: 5.3 7 | * Stable tag: master 8 | * Donate link: 9 | * License: MIT 10 | 11 | Show Jetpack menu for Admin users only. 12 | 13 | ## Description 14 | 15 | Only show the Jetpack menu to admin privileged users. Hide the menu from all other users. 16 | 17 | Consider this a loose fork of [Jetpack Only for Admins](https://wordpress.org/plugins/jetpack-only-for-admins/) by [Andrija Naglic](http://profiles.wordpress.org/andrija). 18 | 19 | ## Development 20 | 21 | PRs are welcome against the `develop` branch. 22 | -------------------------------------------------------------------------------- /admin-only-jetpack.php: -------------------------------------------------------------------------------- 1 | 10 | License: MIT 11 | 12 | Show Jetpack menu for Admin users only. 13 | 14 | ## Description 15 | 16 | Only show the Jetpack menu to admin privileged users. Hide the menu from all other users. 17 | 18 | Consider this a loose fork of [Jetpack Only for Admins](https://wordpress.org/plugins/jetpack-only-for-admins/) by [Andrija Naglic](http://profiles.wordpress.org/andrija). 19 | 20 | ## Development 21 | 22 | PRs are welcome against the `develop` branch. 23 | 24 | ## Changelog 25 | 26 | #### 1.1.0 / 2021-07-07 27 | * add @10up GitHub Actions for WordPress SVN 28 | 29 | #### 1.0.1 / 2019-11-06 30 | * update `Requires at least` header in plugin file 31 | 32 | #### 1.0.0 33 | * initial commit 34 | -------------------------------------------------------------------------------- /languages/admin-only-jetpack.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2019 Andy Fragen 2 | # This file is distributed under the same license as the Admin Only Jetpack plugin. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: Admin Only Jetpack 1.0.1\n" 6 | "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/admin-only-jetpack\n" 7 | "Last-Translator: FULL NAME \n" 8 | "Language-Team: LANGUAGE \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "POT-Creation-Date: 2019-11-06T21:20:14+00:00\n" 13 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 | "X-Generator: WP-CLI 2.3.0\n" 15 | "X-Domain: admin-only-jetpack\n" 16 | 17 | #. Plugin Name of the plugin 18 | msgid "Admin Only Jetpack" 19 | msgstr "" 20 | 21 | #. Plugin URI of the plugin 22 | msgid "https://github.com/afragen/admin-only-jetpack" 23 | msgstr "" 24 | 25 | #. Description of the plugin 26 | msgid "Show Jetpack menu for Admin users only." 27 | msgstr "" 28 | 29 | #. Author of the plugin 30 | msgid "Andy Fragen" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Andy Fragen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------