Export a wordpress blog to a wiki

Instead of exporting them to a dedicated Wiki platform, have you considered one of the plugins that add wiki functionality to an existing WordPress platform?

Options for Wiki WordPress

WordPress CMS is for blogging you can do this with it but can make something similar like this with your own logics but i recommend you to use other CMS there are many CMS for wiki also check this top 5. MediaWiki MoinMoin PhpWiki OddMuseWiki TikiWiki

Including post_type = ‘wiki’ in author archives

Author archives default to searching for posts of the post type post. You could override this with wiki like so; function wpse_11210_set_wiki_for_author( $query ) { if ( $query->is_main_query() && $query->is_author() ) $query->set( ‘post_type’, ‘wiki’ ); } add_action( ‘pre_get_posts’, ‘wpse_11210_set_wiki_for_author’ ); Drop it in your a plugin or your theme’s functions.php (if the file doesn’t exist, … Read more