How to Add a Read More Button

  1. Home
  2. Docs
  3. Event Manager
  4. Frequently Asked Question...
  5. How to Add a Read More Button

How to Add a Read More Button

1. Backup the original files before making any changes.

2. Go to Appearance>>Editor and open the Schedule Page (template-schedule.php)

3. The code starts like function sc_speaker_loop(){

Just below this line add
global $more;

4. After the following code (line number 26):

( if( $loop->have_posts() ): while( $loop->have_posts() ): $loop->the_post(); global $post; )
Please add this line of code:
$more = 0;

5. Replace line: the content(); with the_content(‘Read More’);

6. Update the file.

Was this article helpful to you? Yes No