2014-04-01から1ヶ月間の記事一覧

Trust Formに初期値を入れる

参考:http://notnil-creative.com/blog/archives/2555 まず、初期値を入れるためのテキストボックスをTrustFormに追加する (event-page) その後、trust-form-tpl-ID.phpのtrust_form_show_input()内7行目付近を書き換える 元コード global $trust_form; $…

シングルページを作成する

ひとつのでかいページを作って、その中をぐるんぐるん動かす場合。 参考:http://coliss.com/articles/build-websites/operation/javascript/jquery-plugin-fullcontent.html 配布元:http://www.zehfernandes.com/jquery.fullContent/#home

固定ページの最上位親ページIDを取得する

wordpressの固定ページでは親子関係を作ることができる。 直接の親は$post->post_parentで取得できるが、最上位の親は直接取得するのが面倒。 ということで、functions.php function get_top_parent_page_id() { global $post; $ancestors = $post->ancestor…

BODYタグのクラスにスラッグを追加する

固定ページ限定。 参考:http://terabenote.net/archives/1712/ functions.php function pagename_class($classes = '') { if (is_page()) { $page = get_page(get_the_ID()); $classes[] = $page->post_name; } return $classes; } add_filter('body_class'…