-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreadme.txt
More file actions
60 lines (43 loc) · 1.73 KB
/
readme.txt
File metadata and controls
60 lines (43 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
=== ProudCity Quick Menu ===
Contributors: proudcity, curtismchale
Tags: Menu, Page, Post, Admin, Quick Menu
Requires at least: 6.0.0
Tested up to: 6.0.0
Stable tag: 1.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
ProudCity Quick Menu plugin allow you to add or remove page / post to multiple or single menu on page create or edit screen.
Your theme MUST support Nav Menus for this plugin to work on your site.
== Description ==
- Easily add Page/Post to menu On edit or create.
- Also possible to remove page from menu items during content edit screen.
- Add page/post to multiple menu items together.
- You can easily set the Menu positions including parent child relations.
- There is automatic calculation for menu position, so don't afraid to provide a wrong position.
- On deactivate of this plugin will not affect already added items to menu.
- Easy to use user interface.
=== Filters ===
`pcq_allowed_post_types`: Used to add your own post types to the array of allowed post types.
```
function pcq_add_post_types( $post_types ){
$post_types[] = 'your_custom_post_type';
return (array) $post_types;
}
add_filter( 'pcq_allowed_post_types', 'pcq_add_post_types' );
```
== Installation ==
1. Upload plugin to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. No more settings available, its plug n play
== Screenshots ==
1. Select Menu
2. Add post/page to Menu
3. Menu item properties
4. Advance settings
5. Remove post/page from menu
== Changelog ==
= 1.2 =
- resolve a issues with variables that were named improperly
- forked original plugin to resolve errors: https://wordpress.org/plugins/wp-quick-menu/
= 1.0 =
* Intial Commit of this plugin.