我正在追加?readmore = true到wordpress的url末尾
<a href="<?php the_permalink(); ?>?readmore=true" class="readmore">
<span><?php _e('Read more','MyProduct'); ?></span>
</a>
但在下一页我尝试了这个
<?php
print_r($_GET);
if($_GET['readmore'] == "true") {
get_header();
}
?>
和我的print_r
我明白了
Array ( [page_id] => 8?readmore=true )
我错过了关于在wordpress中获取变量的内容
答案 0 :(得分:5)
尝试附加&amp; readmore = true 而不是?readmore = true 。