Hi there,
How could I make Wiki Page Links link another post type, like “userpress_wiki” post type?
Great plugin!
Thanks
In wikipage links… how to teell the plug-in which wiki to get the links from?
]]>First, let me say that Wiki Page Links works very well on a project we are near launching. This will really help our content authors create links to existing WP pages. I may work on changing the plugin slightly to accommodate different post types.
Anyway, I saw in the readme that we can define shortcut links, but I do not see anywhere that we can make a list of shortcuts and associated URLs to link to. I know there is no admin interface for it yet, but even a manual list somewhere would help us out. All I’d really need to know is where it should go, and in what format. Familiar with PHP coding, so don’t worry about it being over my head. ??
Thanks!
https://www.ads-software.com/extend/plugins/wiki-page-links/
]]>Hi,
This very good plugin is broken with WordPress 3.0, because page-new.php and post-new.php are now merged into one single post-new.php !
So, to make it work, you only have to change :
$content = str_replace($match, "{$page_title}[<a href='$home/wp-admin/page-new.php?post_title=$encodedlink'
into
$content = str_replace($match, "{$page_title}[<a href='$home/wp-admin/post-new.php?post_type=page&post_title=$encodedlink'
Hope it helps !
Janiko.
https://www.ads-software.com/extend/plugins/wiki-page-links/
]]>