Use correct custom post_type token in get_sample_permalink()

git-svn-id: http://svn.automattic.com/wordpress/trunk@14147 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2010-04-18 09:18:20 +00:00
parent 18a81ac245
commit cc9c13d266
1 changed files with 2 additions and 2 deletions

View File

@ -1030,8 +1030,8 @@ function get_sample_permalink($id, $title = null, $name = null) {
$permalink = get_permalink($post, true);
if ( $ptype->query_var ) // Replace custom post_type Token with generic pagename token for ease of use.
$permalink = str_replace('%' . $ptype->query_var . '%', '%pagename%', $permalink);
// Replace custom post_type Token with generic pagename token for ease of use.
$permalink = str_replace("%$post->post_type%", '%pagename%', $permalink);
// Handle page hierarchy
if ( $ptype->hierarchical ) {