1

WordPress の新しい投稿ごとに、http: //mysite.com/x5Kvy6のようなカスタム パーマリンクを設定したいと考えています。

function wp_unique_post_slug($col,$table='wp_posts'){
     global $wpdb;

     $alphabet = array_merge( range(0, 9), range('a','z') );

     $already_exists = true;
     do {

         $guidchr = array();
         for ($i=0; $i<32; $i++)
         $guidchr[] = $alphabet[array_rand( $alphabet )];


         $guid = sprintf( "%s", implode("", array_slice($guidchr, 0, 12, true)) );

       // check that GUID is unique
       $already_exists = (boolean) $wpdb->get_var("
       SELECT COUNT($col) as the_amount FROM $table WHERE $col = '$guid'
       ");

      } while (true == $already_exists);

     return $guid;
}

このスクリプトは、post.php (wordpress コア) のフォントを置き換えるとうまく機能しますが、残念ながら投稿の更新ごとにパーマリンクが変更されます。これを回避する方法は?また、オプションのカスタム キーワードを編集する方法 (http://mysite.com/keyword)。

どんなアイデアでも大歓迎です!

4

2 に答える 2

0

このプラグインを試してみたいと思います。

http://wordpress.org/extend/plugins/custom-permalinks/

于 2012-08-02T02:50:53.383 に答える
0

これを読む

http://codex.wordpress.org/Using_Permalinks

ここに画像の説明を入力

または

function wp_unique_post_slug( $slug, $post_ID, $post_status, $post_type, $post_parent ) {

if($slug!=""){
  $random=rand(11111,99999); //I needed 5 digit random
  $slug = $random;
}
return $slug;

}
于 2012-08-01T18:19:01.563 に答える