タグ

ブックマーク / firegoby.jp (1)

  • WordPressに独自のURLを追加する。2014年版 | Firegoby

    WordPressサイトに独自のURLを追加するのに一番簡単な方法は、add_rewrite_endpoint()関数を使うことです。 この関数を使うと、たとえばhttp://example.com/に対してhttp://example.com/events/みたいなURLを追加するには以下のようにすればオッケーです。 /* Plugin Name: おれおれイベントカレンダー */ register_activation_hook(__FILE__, 'my_activation_callback'); function my_activation_callback() { add_rewrite_endpoint('events', EP_ROOT); flush_rewrite_rules(); } 上記のソースをプラグインとして有効化してhttp://example.com/eve

    w7tree
    w7tree 2013/12/10
  • 1