Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m just thinking the same thing myself.

    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'], ' &hellip;' ) . '</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.

    I see what you did there mrkad, works a treat!
    Many thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘READ MORE l?nk’ is closed to new replies.