私はこのトリッキーな質問にとても夢中になりました。私の URL は次のとおりです: www.mysite.com/page/?id=sun
変数 (sun) を取得して、PHP 配列に入れたいと思います。
<?php
$tag = $_GET['id'];
wp_reset_query();
query_posts(array('post_type'=> 'projects','technologiestags'=> $tag) );
if(have_posts()):
while(have_posts()):the_post();
?>
<div class="technology">
<h4><?php the_title(); ?></h4><br/><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(''); ?></a>
</br></br><div class="readmore"><a href="<?php the_permalink(); ?>">Read more »</a></div>
</div><!--END of technology Id-->
<?php endwhile; endif; wp_reset_query();?>
ご覧のとおり、「. echo "$tag" . " を使用しましたが、機能しません。URL 変数を取得して PHP に挿入する方法は他にありますか。
前もって感謝します。