Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的自定义插件表中进行搜索。即当我搜索一些关键字或短语时,它也应该在我的自定义表中搜索。
如果数据来自我的自定义表,那么它应该执行我的插件功能来显示数据。
不知道这是否是一个好的解决方案,但我自己做了。见下文 :
在 have_posts 的 if 条件之后和 else 之前的部分意味着我插入了我的代码
elseif (pdfsearch_result($_GET['s'])): $search_pdf = mysearch_result($_GET['s']); // 我的搜索功能来搜索我的插件数据
然后进行格式化并达到预期的结果。希望这可能对某人有所帮助,但如果有更好的方法,请发布。