<?php
$trimtitle = get_the_title();
$shorttitle = wp_trim_words( $trimtitle, $num_words = 4, $more = '… ' );
echo '<h6 class="info-title">' . '<a href="' . get_permalink() . '">' . $shorttitle . '</a></h6>';
$trimexcerpt = get_the_excerpt();
$shortexcerpt = wp_trim_words( $trimexcerpt, $num_words = 50, $more = '… ' );
echo '<p>' . $shortexcerpt . '</p>';
?>
<a class="more-link button" href="<?php the_permalink() ?>" style="margin: 23px 0px -24px;">Read More</a>
$trimtitle = get_the_title();
$shorttitle = wp_trim_words( $trimtitle, $num_words = 4, $more = '… ' );
echo '<h6 class="info-title">' . '<a href="' . get_permalink() . '">' . $shorttitle . '</a></h6>';
$trimexcerpt = get_the_excerpt();
$shortexcerpt = wp_trim_words( $trimexcerpt, $num_words = 50, $more = '… ' );
echo '<p>' . $shortexcerpt . '</p>';
?>
<a class="more-link button" href="<?php the_permalink() ?>" style="margin: 23px 0px -24px;">Read More</a>
Comments
Post a Comment