我写了以下内容来检索与页面标题匹配的帖子列表(按标签)。问题是它不能很好地处理包含多个单词的标记(可能还有特殊字符,但我还没有遇到)。
<?php
$title_post_tag = new WP_Query( array(
\'tag\' => strtolower( get_the_title() )
) );
while ( $title_post_tag->have_posts() ) : $title_post_tag->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php the_date(); ?></p>
<?php endwhile;
?>
我已经阅读了关于需要在php中进行清理的内容,但我不完全确定如何在这种情况下使用它,或者它是否对我有任何帮助。
非常感谢您的指导。