WordPress 2.5 と WordPress 2.5.1 で問題になっている、「エントリーのタイトルが似かよっていると投稿できない問題」の対処法です。(私も、実は1度体験しています)
http://ja.forums.wordpress.org/topic/44?replies=17
http://ja.forums.wordpress.org/topic/196#post-946
ここから情報を得ています。

私が、DF で WordPress 2.5 と WordPress 2.5.1 の
wp-includes/post.phpの1269~1279行目(WordPress 2.5)あたりを比較してみましたが、同じコードですので、WordPress 2.5.1 でも、上記に書かれている対処法で解決するものだと推測してます。1行追加と1行変更します。
WordPress 2.5.1 では、
wp-includes/post.phpの1284~1294行目にあたります。

if ($post_name_check || in_array($post_name, $wp_rewrite->feeds) ) {
	$suffix = 2;
	do {
		$alt_post_name = substr($post_name, 0, 200-(strlen($suffix)+1)). "-$suffix";
		$alt_post_name = urldecode ($alt_post_name);	//★追加
		// expected_slashed ($alt_post_name, $post_name, $post_type)
		$post_name_check = $wpdb->get_var($wpdb->prepare("SELECT post_name FROM $wpdb->posts WHERE post_name = '$alt_post_name' AND post_type = '$post_type' AND ID != %d AND post_parent = %d LIMIT 1", $post_ID, $post_parent));
		$suffix++;
	} while ($post_name_check);
	$post_name =urlencode($alt_post_name);	//★変更
}


トラックバックURL:
https://serene.sakura.ne.jp/blog/2008/04/29/0244/91.php/trackback

Comments are closed.

blank