Use correct custom post_type token in get_sample_permalink()

git-svn-id: https://develop.svn.wordpress.org/trunk@14147 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-04-18 09:18:20 +00:00
parent f72a1d860a
commit 5383a45de3
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 ) {