Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/registrations.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/registrations.php	(revision 7329)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/registrations.php	(working copy)
@@ -29,6 +29,13 @@
 
 		// Register P2P relationships.
 		add_action( 'p2p_init', array( __CLASS__, 'register_post_relationships' ) );
+
+		global $wp_parser;
+
+		if ( $wp_parser instanceof \WP_Parser\Plugin ) {
+			// Parser is activated. Remove WP Parser methods permalink filter.
+			remove_filter( 'post_type_link', array( $wp_parser, 'method_permalink' ), 10, 2 );
+		}
 	}
 
 	/**
