编辑:
我有一个自定义 php 函数设置来显示 wordpress 帖子摘录,当单击阅读更多链接时,摘录被隐藏并显示主要内容。但是,我希望阅读更多按钮成为内容展开时的隐藏按钮。
<?php the_excerpt();
echo '<a value="show more..." onclick="$(this).prev().hide(); $(this).next().show();" >Read More</a>';
echo '<div style="display:none">';
echo the_content();
echo '</div>'; ?>