-1

我对这个棘手的问题感到非常疯狂。我的网址是: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&nbsp;&raquo;</a></div>

</div><!--END of technology Id-->

<?php endwhile; endif; wp_reset_query();?>

如您所见,我使用了“ . echo "$tag" . ",但它不起作用。有没有其他方法可以获取 URL 变量并将其插入 PHP。

提前致谢。

4

3 回答 3

0
query_posts(array('post_type'=> 'projects','technologiestags' => $tag);
于 2012-10-10T20:28:51.527 回答
0

$tag 是一个变量,可以用来代替传递字符串:

query_posts(array('post_type'=> 'projects','technologiestags' => $tag);
于 2012-10-10T20:29:23.447 回答
0

一些改变,试试:

if(isset($_GET['id'])):
        $tag = stript_tags($_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><?= the_title(); ?></h4>
                    <div class="post-title"><a href="<?php the_permalink(); ?>"><?= the_post_thumbnail(''); ?></a></div>
                    <div class="readmore"><a href="<?= the_permalink(); ?>">Read more&nbsp;&raquo;</a></div>
                </div>
                <?
            endwhile;
            wp_reset_query();
        endif;
    endif;
于 2012-10-10T20:32:36.617 回答