如何使用jQuery在默认情况下启用Read More

时间:2020-04-02 作者:Avinash Patel

我有一个question and answer 并使用自定义wordpress主题,该主题具有启用read more 使用jquery链接。当我点击阅读更多链接时,它会扩展文章的全部内容,而不会打开文章。

我想知道是否有可能在默认情况下扩展帖子,而无需单击红色更多链接。你能帮我做到这一点吗。

enter image description here

1 个回复
SO网友:CamilleJG

您可以将下面的解决方案用于jQuery:

jQuery(document).ready(function(){
        jQuery(".post-read-more").each(function(){
            jQuery(this).click();
        });
        // And if you want to finally disable this links
        jQuery(".question-read-more").remove();
        jQuery(".question-read-less").remove();
    });
Bests,Camille

相关推荐

Gutenberg Gallery Block--如何在Java/jQuery中获得完整的图片url?

我正在使用jQuery将古腾堡画廊的图像转换为可点击的灯箱图像。为了做到这一点,我使用jQuery获取数据完整url属性,但我只是发现一些图像没有此属性。我尝试使用srcset属性,但我找不到从jQuery中的url列表中选择“正确”url(全尺寸)的方法。那么,有没有办法在jQuery中获取完整的图像url?