How to use Readmore.js? [closed]

The problem is related to wordpress loading jquery in noconflict mode in which the $ shortcut does not work. Try to replace it with an explicit jQuery or wrapt the relevant code in a way which will decalre $ like in the following example

jQuery(document).ready(function ($) {
  $('article').readmore();
});