这是我第一次在这个网站上发帖,所以如果这个问题不完全合适,我会道歉但是我正在为我的兄弟建立一个投资组合网站,他是一个作曲家,他需要他的音乐库才能成为复选框过滤器-能够。问题是,当我使用过滤器进行搜索时,结果只显示摘录,而不是我需要的音频播放器。
Library page displaying the full posts with audio player
Search results page showing just the post title and nothing else
此外,原谅网站的粗糙。我今天早上刚刚开始...提前谢谢!
答案 0 :(得分:0)
要显示您必须使用the_content
功能的完整内容,请在search.php
文件中替换以下内容
<?php the_excerpt(); // partial content ?>
与
<?php the_content(); // full content ?>
还要记住。 the_excerpt
功能删除了所有HTML
代码,因此可能会出现问题,您可以阅读this article。