Title: wildcard permalink
Last modified: January 16, 2017

---

# wildcard permalink

 *  [gnappo](https://wordpress.org/support/users/gnappo/)
 * (@gnappo)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wildcard-permalink/)
 * Hi i need to load only some plugins in gravity form entries list and edit entry
   page in the back end
 * i have an url like this [http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63](http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63)
   and i have the list of all entries with the gravity form id= 63 when i click 
   on a user i get an url like this:
 * [http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63&lid=2047&orderby=ASC&filter&paged=1&pos=0&field_id&operator](http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63&lid=2047&orderby=ASC&filter&paged=1&pos=0&field_id&operator)
 * i want load only some plugins (the same on different gravity form id and edit
   entry so i have created a plugin filter with url:
 * [http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63](http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63)
   loading the need plugins and check the affect child but when i entry in teh url
   like the 2nd above nothing change
 * i have fuzzy url activated and ignore url argument Off i need to have something
   like this
 * **[http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=\*](http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=*)**
   that can affect all the ids and entries.
 * How i can do that
 * Where i wrong?
 * Thanks

Viewing 7 replies - 1 through 7 (of 7 total)

 *  [IndikatorDesign](https://wordpress.org/support/users/indikatordesign/)
 * (@indikatordesign)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wildcard-permalink/#post-8661095)
 * Hi gnappo,
 * as far as I know, PO does not support wildcards. If I remember correctly, this
   would have a negative effect on performance.
 * Alternatively, you can create a plugin group with the plugins you want to turn
   off.
 * Then you have to create a filter for each URL and deactivate the group there.
 *  Thread Starter [gnappo](https://wordpress.org/support/users/gnappo/)
 * (@gnappo)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wildcard-permalink/#post-8661139)
 * ok i will try and thanks 4 the “workaround” suggestion
 *  Thread Starter [gnappo](https://wordpress.org/support/users/gnappo/)
 * (@gnappo)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wildcard-permalink/#post-8662280)
 * ok i have tried creating the group as u suggested, so the issue of the ID of 
   the gravity form [http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63](http://mydomain.com/wp-admin/admin.php?page=gf_entries&id=63)
   is solved, how i can create a similar things for single entry user that signed
   through gravity form?
 * i mean to have the same plugin group activated on url like this
 * [http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63](http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63)**&
   lid=2047&orderby=ASC&filter&paged=1&pos=0&field_id&operator** where the bold 
   part dynamically change for each entry and i can not insert an URL for each single
   entry.
 * How i can do that?
 *  [IndikatorDesign](https://wordpress.org/support/users/indikatordesign/)
 * (@indikatordesign)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wildcard-permalink/#post-8665544)
 * Hi gnappo,
 * as described above, I think it can only be added manually.
 * The only thing you can do (if you have a little programming experience) is to
   trigger the creation of a new entry (Gravity Forms has a lot of hooks you can
   use) and then automatically write a corresponding entry into the PO database 
   table.
 * Look in the table “$wpdb->prefix . po_plugins” to see the needed structure.
 * In the file “/plugin-organizer/lib/PluginOrganizer.class.php” on line 156 you
   can see how to insert an entry into the PO database table..
 * All you need to do is to copy your source filter and insert it with the corresponding
   permalink and it hashes..
    -  This reply was modified 9 years, 4 months ago by [IndikatorDesign](https://wordpress.org/support/users/indikatordesign/).
 *  Thread Starter [gnappo](https://wordpress.org/support/users/gnappo/)
 * (@gnappo)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wildcard-permalink/#post-8666694)
 * ok thank you for the suggest. 🙂
 *  Plugin Author [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/wildcard-permalink/#post-8809723)
 * I just submitted version 8.0. In this version you can add multiple permalinks
   to a plugin filter and you can use a wildcard in the permalink. The wildcard 
   is limited to one piece of the url structure. So you can have a permalink like
   [http://www.dssdfgsdfg.com/some/pretty/permalink/](http://www.dssdfgsdfg.com/some/pretty/permalink/)
   and have a plugin filter with the permalink [http://www.dssdfgsdfg.com/some/*/permalink/](http://www.dssdfgsdfg.com/some/*/permalink/)
   that will match it.
 *  [joanaltres](https://wordpress.org/support/users/joanaltres/)
 * (@joanaltres)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/wildcard-permalink/#post-9032258)
 * Hi Jeff,
 * When you say “one piece of the url structure”, does that mean everything between
   the forward slashes, or can the wildcard be appended to a portion of the url,
   such as what the op here was needing?
 * Example: [http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63&lid=2047&orderby=ASC&filter&paged=1&pos=0&field_id&operator](http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63&lid=2047&orderby=ASC&filter&paged=1&pos=0&field_id&operator)
 * Can the wildcard be inserted anywhere in the final string like below?
 * [http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63](http://mydomain.com/wp-admin/admin.php?page=gf_entries&view=entry&id=63)**\***

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘wildcard permalink’ is closed to new replies.

 * ![](https://ps.w.org/plugin-organizer/assets/icon-256x256.png?rev=1786554)
 * [Plugin Organizer](https://wordpress.org/plugins/plugin-organizer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/plugin-organizer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/plugin-organizer/)
 * [Active Topics](https://wordpress.org/support/plugin/plugin-organizer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/plugin-organizer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/plugin-organizer/reviews/)

 * 7 replies
 * 4 participants
 * Last reply from: [joanaltres](https://wordpress.org/support/users/joanaltres/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/wildcard-permalink/#post-9032258)
 * Status: not resolved