我想根据用户输入的网址在我的404页面上添加自动搜索结果输出。
问题在于,在通常的search.php文件中,wordpress从URL参数中获取值并使用常规循环,如下所示:
<?php while (have_posts()) : the_post(); ?>
<h1>Search Results</h1>
<a href="<?php the_permalink() ?>"> <h2><?php the_title(); ?></h2> </a>
<?php endwhile; ?>
如何获取它以便我可以在代码中手动输入搜索词?
非常感谢。
答案 0 :(得分:1)
您想使用来自网址的值自动搜索? 也许您可以使用搜索表单显示具有该值的类似帖子,或向他们显示最近的搜索表单,使用搜索您的网站和google.com。 可能此链接可以帮助Built Effective 404 Error Pages
希望得到这个帮助,