Linux 软件免费装

Page Keys

开发者 ipm-frommen
tfrommen
更新时间 2023年5月26日 05:00
PHP版本: 3.5.0 及以上
WordPress版本: 6.2.2
版权: GPLv3
版权网址: 版权信息

标签

page pages keys

下载

1.3.2

详情介绍:

Register page keys, assign actual WordPress pages to them, and access each of these pages by its individual key. Have you ever wanted to access a specific page from inside a template file? Of course, you could query it by its title. But what if someone wanted to rename the page? Okay, so we choose the slug. But maybe that someone also thought editing the slug as well to make it fit the new title was a very good idea. Yes, I know, it is not. But that someone either didn't know, or didn't care. Okay, so let's use the page ID. Oh, wait, now that someone, by mistake, permanently deleted that page. After having visited the frontend that someone created a new page, with the exact same title and the exact same slug as the original page. But that damn page still won't show. This is exactly when Page Keys kicks in. Usage What this plugin is all about is providing a means to accessing specific pages by unique and therefore individual keys. And doing this is quite simple. On the Page Keys admin page, you can add as many unique page keys as you like. For each of these page keys, you then select a (published) page. Hit the Save Changes button, and you're done already. Suppose you now want to access a specific page in one of your theme's template file. After having defined a page key and having assigned a page to it, you can get the according WP_Post object by calling get_page_by_key( $key ). In the rare case where you already have a function of that name defined within the global namespace, you would have to set up such a function by yourself. In principle, this is just a copy of what you can find in the functions.php file of this plugin. Filters In order to customize certain aspects of the plugin, it provides you with several filters. For each of these, a short description as well as a code example on how to alter the default behavior is given below. Just put the according code snippet in your theme's functions.php file or your customization plugin, or to some other appropriate place. edit_page_keys_capability Editing the page keys is restricted to a certain capability, which is by default edit_published_pages. The reason for this choice lies with the fact that user, who is capable of editing a published page (e.g., changing its status to draft), implicitly is able to compromise any page key mapped to the page. ` /** return 'manage_options'; } ); **list_page_keys_capability`** Accessing the plugin's settings page is restricted, too. In order to distinguish between users who are only allowed to see the existing page keys as well as their respective page, and users, who are able to edit page keys, there are two individual capabilities. The default for accessing the settings page is edit_pages. ` /** return 'read'; } ); **page_keys_show_admin_notice`** Depending on how exactly you are working with the plugin, the admin notice informing you about page keys that don't have a page assigned might be more annoying than helping. Gladly, there is a filter to turn this off. add_filter( 'page_keys_show_admin_notice', '__return_false' ); Contribution To contribute to this plugin, please see its GitHub repository. If you have a feature request, or if you have developed the feature already, please feel free to use the Issues and/or Pull Requests section. Of course, you can also provide me with translations if you would like to use the plugin in another not yet included language.

安装:

This plugin requires PHP 5.3.
  1. Upload the page-keys folder to the /wp-content/plugins/ directory on your web server.
  2. Activate the plugin through the Plugins menu in WordPress.
  3. Find the new Page Keys menu item in the Pages menu in your WordPress backend.

更新日志:

1.3.2 1.3.1 1.3.0 1.2.0 1.1.0 1.0.0