我对这个棘手的问题感到非常疯狂。我的网址是: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。
提前致谢。