From e8dd01bb1b4f09ace4948841b46aa047a9949466 Mon Sep 17 00:00:00 2001 From: dd32 Date: Sat, 13 Mar 2010 06:59:07 +0000 Subject: [PATCH] Add Endpoints for Attachments, Paging, Comment paging and custom Endpoints to custom post_type's. See #12597 git-svn-id: http://svn.automattic.com/wordpress/trunk@13688 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rewrite.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/wp-includes/rewrite.php b/wp-includes/rewrite.php index d80ad00e6..804daf543 100644 --- a/wp-includes/rewrite.php +++ b/wp-includes/rewrite.php @@ -1439,6 +1439,16 @@ class WP_Rewrite { $page = true; } + if ( ! $post ) { + // For custom post types, we need to add on endpoints as well. + foreach ( get_post_types( array('_builtin' => false ) ) as $ptype ) { + if ( strpos($struct, "%$ptype%") !== false ) { + $post = true; + $page = false; + } + } + } + //if we're creating rules for a permalink, do all the endpoints like attachments etc if ($post) { $post = true;