我正在尝试使用 WordPress 循环实现一个按标签显示博客文章的页面。我遇到的问题是将标签设置为页面标题。这是我到目前为止尝试过的代码。
<?php query_posts('tag=aetna'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="page-content ">
<?php the_content() ;?>
</div>
<?php endwhile; endif ;?>
这段代码工作得很好。但是,当我尝试将标签分配给页面标题时,它不起作用。这是我为此尝试过的代码。我是 PHP 新手,所以我希望这只是一个愚蠢的语法。
<?php $tag=strtolower(the_title()); ?>
<?php query_posts('tag=$tag'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="page-content ">
<?php the_content() ;?>
</div>
<?php endwhile; endif ;?>
非常感谢您为我提供的任何帮助。谢谢!