WordPress


決まったパーマリンクの設定を使用しない場合で、連番にしたい場合です。
1.管理画面より、パーマリンクの設定を「/%postname%/」に変更する。
2.下記部分を編集する。

次に、wp-admin/includes の中の meta-boxes.php に変更を加えます。この中の
<input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( apply_filters('editable_slug', $post->post_name) ); ?>" />
↓↓

<input name="post_name" type="text" size="13" id="post_name" value="<?php echo(get_usernumposts($post->post_author) + 1); ?>" />

のように変更します。

参考URL:http://wordpressmania.blog.fc2.com/blog-entry-59.html



トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2022-06-30 (木) 01:40:11