Open the posts.php from the includes folder. Go to line 116 somewhere and change it like this:
if ( $args['excerpt'] ) :
$html .= '<div class="arpw-summary">' . wp_trim_words( apply_filters( 'arpw_excerpt', get_the_excerpt() ), $args['excerpt_length'], ' …' ) . '</div>';
endif;
$html .= '<a class="arpw-title" href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . 'Read more' . '</a></li>';
endwhile;
$html .= '</ul>';
Now there’s a read more link. This is the part I’ve altered:
$html .= '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . 'Read more' . '</a></li>';
I’ve simply stolen the code that made the title a link and placed it before the
- ended. Hopefully this points you guys in the right direction. Im no pro, just a beginner. Keep that in mind.
-
This reply was modified 8 years, 2 months ago by mrakd.
-
This reply was modified 8 years, 2 months ago by mrakd.