BassBeatCube
Hiroshi Itoigawa HomePage

糸井川 博 のホームページへようこそ!

趣味でのベースや音楽活動について紹介します。
音楽以外のことも書いていきます。

News

1 | 2 | 3 | 4 | 5  »  [65]
2012-05-12 09:25:10
WordPressのメモ

カスタム投稿タイプの投稿に属するタームを取得する

 $terms = wp_get_post_terms( get_the_ID(), 'works',  array( 'orderby'=>'name', 'order'=>'DESC' ));
  if ($terms){
   foreach ( $terms as $term ):
    $arterm[] = $term->slug;
   endforeach;
  }
タームから関連する投稿を取得する

query_posts(
            array(
                'post_type' => 'portfolio',
                'posts_per_page' => 12,
                'post__not_in' => array($post->ID),
		'tax_query' => array(
			array(
			 'taxonomy'=>'works',
			 'terms'=>$arterm,
			 'field'=>'slug',
			 'operator'=>'IN'
			),
			'relation' => 'AND'
			)
            )
        );
タームなどの言葉の使い方が違ってるかもしれないです。
2012-05-01 21:17:50
photo album
アルバムページを作成公開しました。
写真を徐々に増やしていきます。

BBC Photo Album
2012-04-30 07:30:55
H.A.R.U.LIVE
RiverSideStudio
4/29
404&中村大輔でライブやってきました。

2012-04-23 15:08:33





デジタル一眼デビュー
2012-04-17 08:25:24
RinRin Live
4月16日 加子母 中華采館「鈴鈴」で
Tomoyo & 404 & Vivitones でライブやってきました。
Roots

MBB

1 | 2 | 3 | 4 | 5  »  [65]
アーカイブ

Copyright 2010 BassBeatCube Itoigawa